Skip to content
Snippets Groups Projects
Select Git revision
  • d5e5e2a834a2f6766faa6f552fa85c86c2d17f79
  • master default protected
  • patch-2
  • patch-1
4 results

InvalidSessionIDException.java

Blame
  • Forked from Tim Miller / SWEN90006-A1-2019
    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