diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2010-08-09 15:19:41 -0500 |
---|---|---|
committer | Peter Seebach <seebs@laptop-seebs-net.local> | 2010-08-11 14:37:59 -0500 |
commit | a3075407e06a000a931874af57c33341b6a13da9 (patch) | |
tree | 14c7e28fde0dafa022396b90645f44a1f37bb306 /run_tests.sh | |
parent | 34dce532d23326be07dd9824159f341223814ba2 (diff) | |
download | pseudo-a3075407e06a000a931874af57c33341b6a13da9.tar.gz pseudo-a3075407e06a000a931874af57c33341b6a13da9.tar.bz2 pseudo-a3075407e06a000a931874af57c33341b6a13da9.zip |
Enable execl, execle, execlp, execv, and execvp wrappers
We wrap all of the execs so that we can ensure the environment is
properly configured prior to the exec running.
handle ... for the new execl* wrappers
Add a test for the new execl* ... handling.
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-x | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 9228668..0eced9f 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -42,7 +42,7 @@ do else echo "${filename/%.sh}: Failed." fi - rm -rf var + rm -rf var/pseudo/* done echo "${num_passed_tests}/${num_tests} test(s) passed." |