1f08c3bdfSopenharmony_ci#!/bin/sh 2f08c3bdfSopenharmony_ci# 3f08c3bdfSopenharmony_ci# A simple wrapper for executing all of the tests. 4f08c3bdfSopenharmony_ci# 5f08c3bdfSopenharmony_ci# See COPYING for licensing details. 6f08c3bdfSopenharmony_ci# 7f08c3bdfSopenharmony_ci# Ngie Cooper, July 2010 8f08c3bdfSopenharmony_ci# 9f08c3bdfSopenharmony_ci 10f08c3bdfSopenharmony_ciFAILED=0 11f08c3bdfSopenharmony_ciPROG_SCRIPT="$(dirname "$0")/run-posix-option-group-test.sh" 12f08c3bdfSopenharmony_ci 13f08c3bdfSopenharmony_cifor option_group in AIO MEM MSG SEM SIG THR TMR TPS; do 14f08c3bdfSopenharmony_ci if ! $PROG_SCRIPT $option_group; then 15f08c3bdfSopenharmony_ci FAILED=1 16f08c3bdfSopenharmony_ci fi 17f08c3bdfSopenharmony_cidone 18f08c3bdfSopenharmony_ci 19f08c3bdfSopenharmony_ciexit $FAILED 20