Skip to content
Snippets Groups Projects
Commit 1ac66747 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Test] add "full" option to quicktest.sh

parent a9b1feb8
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,11 @@ elif [ $1 = "rtlsim" ]; then ...@@ -16,6 +16,11 @@ elif [ $1 = "rtlsim" ]; then
elif [ $1 = "end2end" ]; then elif [ $1 = "end2end" ]; then
echo "Running end2end test suite with no parallelism" echo "Running end2end test suite with no parallelism"
python setup.py test --addopts "-k end2end" python setup.py test --addopts "-k end2end"
elif [ $1 = "full" ]; then
echo "Running full test suite, each step with appropriate parallelism"
$0 main;
$0 rtlsim;
$0 end2end;
else else
echo "Unrecognized argument to quicktest.sh" echo "Unrecognized argument to quicktest.sh"
fi fi
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