Skip to content
Snippets Groups Projects
Select Git revision
  • 6dd4cc2e8c40ddead13eb9062db6c7f1dcbb8b38
  • master default protected
  • final-version
3 results

automail.properties

Blame
  • Forked from Zening Li / SWEN30006-Group-Work
    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