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