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