diff options
author | Peter Carbonetto | 2017-07-18 13:56:10 -0500 |
---|---|---|
committer | Peter Carbonetto | 2017-07-18 13:56:10 -0500 |
commit | 42dc643e44563f64d3b7593c051898b7879d9878 (patch) | |
tree | 33fcd6aa1066016aea9b54e97a84f4250562c007 /test/test_suite.sh | |
parent | 8de8f701755b3dc4c042591541aa86bfda02f36b (diff) | |
download | pangemma-42dc643e44563f64d3b7593c051898b7879d9878.tar.gz |
Moved shunit2 files to test directory.
Diffstat (limited to 'test/test_suite.sh')
-rwxr-xr-x | test/test_suite.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_suite.sh b/test/test_suite.sh index 18c9ee9..d1dbb3c 100755 --- a/test/test_suite.sh +++ b/test/test_suite.sh @@ -43,9 +43,9 @@ shunit2=`which shunit2` if [ -e "../contrib/shunit2/source/2.0/src/shell/shunit2" ]; then echo try to run the locally installed shunit2 . ../contrib/shunit2/source/2.0/src/shell/shunit2 -elif [ -e "../shunit2-2.0.3/src/shell/shunit2" ]; then +elif [ -e "shunit2-2.0.3/src/shell/shunit2" ]; then echo try to run the older locally installed shunit2 - . ../shunit2-2.0.3/src/shell/shunit2 + . shunit2-2.0.3/src/shell/shunit2 elif [ -x "$shunit2" ]; then echo run system shunit2 . $shunit2 |