diff --git a/test.sh b/test.sh index 7bb96e7..49939c8 100755 --- a/test.sh +++ b/test.sh @@ -2,9 +2,9 @@ echo "Trying to compile the program..." make -C src echo "Fetching the test suite..." -git clone https://gitlab.doc.ic.ac.uk/teaching-fellows/armv8_testsuite.git -mkdir armv8_testsuite/solution -cp -R src/. ./armv8_testsuite/solution +git clone git@gitlab.doc.ic.ac.uk:teaching-fellows/armv8_testsuite.git +mkdir armv8_testsuite/solution +cp -r src/. ./armv8_testsuite/solution cd armv8_testsuite python3 -m pip install -r requirements.txt ./install @@ -15,10 +15,10 @@ echo "Running the test suite..." echo "Test Suite Completed" cd .. -# printf "%s " "Press enter to continue" -# read ans +printf "%s " "Press enter to continue" +read ans echo "Cleaning Up..." make -C src clean rm -rf armv8_testsuite -echo "Done" \ No newline at end of file +echo "Done"