diff --git a/test.sh b/test.sh index a9f59e5..bcd4448 100644 --- a/test.sh +++ b/test.sh @@ -1,6 +1,6 @@ #!/bin/bash -test_scripts=$(ls primitiver_tests) +test_scripts=$(ls primitive_tests) #test_scripts=$(ls primitive_tests | grep -v -f tested_file.txt) for file in $test_scripts @@ -12,7 +12,7 @@ do echo $file # Test pipeline building - python new_tests/$file > tmp.txt 2>>tmp.txt + python primitive_tests/$file > tmp.txt 2>>tmp.txt error=$(cat tmp.txt | grep 'Error' | wc -l) echo "\t#Pipeline Building Errors:" $error if [ "$error" -gt "0" ]