Select Git revision
PaintGUI.class
Forked from
Ho Dac Hai / COMP90015-DSAss2-InfinityMonkeys-remaster
Source project has a limited visibility.
run_tests.sh 278 B
#!/bin/sh
PROGRAM=$1
USE_POC=$2
if [ "$USE_POC" = "--use-poc" ]; then
# test program with its proof of concept test
./bin/${PROGRAM}/dc-san ./poc/${PROGRAM}.poc
exit $?
else
# fuzz program with all tests in the tests/ folder
./bin/${PROGRAM}/dc-san ./tests/*
exit $?
fi