school/cs235/lab03/Run_Test_Driver.sh

17 lines
356 B
Bash
Executable File

#!/bin/bash
EXE=dont_run_me
g++ -o$EXE Student_Code/*.cpp ignoreme.a -g
if (( $? )) ;
then
echo Compilation Failed;
read -p "Press enter to exit";
else
chmod 755 $EXE;
valgrind --tool=memcheck --leak-check=yes --max-stackframe=5000000 --show-reachable=yes --suppressions=DONT_DELETE.supp ./$EXE
rm ./$EXE
read -p "Press any key to exit..."
fi;