diff options
author | harti <harti@FreeBSD.org> | 2004-07-09 08:59:15 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2004-07-09 08:59:15 +0000 |
commit | e6739c645d7c85a997638d4755a68bdce8456a60 (patch) | |
tree | 9d91830dbad8677401e8cdff0ed45df9ae26affa | |
parent | 4f3bf456c259d542040a34d38b8d548229753e5c (diff) | |
download | FreeBSD-src-e6739c645d7c85a997638d4755a68bdce8456a60.zip FreeBSD-src-e6739c645d7c85a997638d4755a68bdce8456a60.tar.gz |
Use and explicite 'sh' to run the scripts, because they may be checked
out non-executable.
-rw-r--r-- | tools/regression/atm/RunTest.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/regression/atm/RunTest.sh b/tools/regression/atm/RunTest.sh index ab34104..8fd7cc6 100644 --- a/tools/regression/atm/RunTest.sh +++ b/tools/regression/atm/RunTest.sh @@ -34,10 +34,10 @@ do esac done -(cd proto_uni ; ./RunTest.sh -u $options) -(cd proto_sscop ; ./RunTest.sh -u $options) -(cd proto_sscfu ; ./RunTest.sh -u $options) +(cd proto_sscop ; sh ./RunTest.sh -u $options) +(cd proto_sscfu ; sh ./RunTest.sh -u $options) +(cd proto_uni ; sh ./RunTest.sh -u $options) -(cd proto_uni ; ./RunTest.sh $options) -(cd proto_sscop ; ./RunTest.sh $options) -(cd proto_sscfu ; ./RunTest.sh $options) +(cd proto_uni ; sh ./RunTest.sh $options) +(cd proto_sscop ; sh ./RunTest.sh $options) +(cd proto_sscfu ; sh ./RunTest.sh $options) |