From e302b21d0e0a1126449357238b1d8db273acd8c1 Mon Sep 17 00:00:00 2001 From: Themis Demetriades Date: Wed, 12 Jun 2024 16:19:03 +0100 Subject: [PATCH] Updated testing script to fix bug with moving file w/ S --- test.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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"