Skip to content
Snippets Groups Projects
Select Git revision
  • 494bb0d8154b40352da0b19e8c08bb06eca7c31c
  • master default protected
  • hai
  • isaac
  • CheHao
  • Eldar
  • mpriymak
  • master-before-merging-with-hai
  • master-before-merging-with-isaac
  • rmi-working-before-merging-with-isaac
  • all-code-merged-by-hai-v1
11 results

PaintGUI.class

Blame
  • 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