Hi! > fsync, fork, getpid > > Signed-off-by: Jin Li <[email protected]> > --- > .../bin/run-posix-option-group-test.sh | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git > a/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh > b/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh > index 17f6e49..977d805 100755 > --- a/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh > +++ b/testcases/open_posix_testsuite/bin/run-posix-option-group-test.sh > @@ -33,6 +33,7 @@ AIO) > echo "Executing asynchronous I/O tests" > run_option_group_tests "$BASEDIR/aio_*" > run_option_group_tests "$BASEDIR/lio_listio" > + run_option_group_tests "$BASEDIR/fsync" > ;; > SIG) > echo "Executing signals tests" > @@ -65,6 +66,8 @@ MSG) > TPS) > echo "Executing process and thread scheduling tests" > run_option_group_tests "$BASEDIR/*sched*" > + run_option_group_tests "$BASEDIR/fork" > + run_option_group_tests "$BASEDIR/getpid" > ;; > MEM) > echo "Executing mapped, process and shared memory tests"
The problem with this patch is that the tests in the script are sorted by codes for the particular POSIX extension while the tests you are adding are part of the core POSIX (not sure if all of them but at least most of them). If you just want to execute all openposix tests run 'make test' in the testcases/open_posix_testsuite/ directory. -- Cyril Hrubis [email protected] ------------------------------------------------------------------------------ Try New Relic Now & We'll Send You this Cool Shirt New Relic is the only SaaS-based application performance monitoring service that delivers powerful full stack analytics. Optimize and monitor your browser, app, & servers with just a few lines of code. Try New Relic and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
