Skip to content
Snippets Groups Projects
Commit 15572995 authored by Jason Hiser's avatar Jason Hiser
Browse files

reduced test runs from 4 inputs to 2 for test time reduction

Former-commit-id: 0693c3ecfd43c014456612f3dc49b44791166579
parent ce152773
No related branches found
No related tags found
No related merge requests found
......@@ -91,13 +91,15 @@ protect()
clean()
{
rm out >> /dev/null 2>&1
rm correct >> /dev/null 2>&1
local ec=$?
rm -f out >> /dev/null 2>&1
rm -f correct >> /dev/null 2>&1
rm -Rf fib.exe* peasoup_exe* lib*.so* >> /dev/null 2>&1
for config in "${configs[@]}"; do
rm *."$config" >> /dev/null 2>&1
rm -f *."$config" >> /dev/null 2>&1
done
exit $ec
}
......
......@@ -90,6 +90,7 @@ protect()
clean()
{
local ec=$?
rm -f out >> /dev/null 2&>1
rm -f correct >> /dev/null 2&>1
rm -rf peasoup_executable_directory.* >> /dev/null 2&>1
......@@ -100,6 +101,8 @@ clean()
for config in "${configs[@]}"; do
rm -f *."$config" >> /dev/null 2&>1
done
exit $ec
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment