Skip to content
Snippets Groups Projects
Commit 27a44967 authored by Vedaank's avatar Vedaank
Browse files

added benchmarks to make

parent 7cc34772
No related branches found
No related tags found
No related merge requests found
CLEAN=mvn clean package
TEST=java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=..s --run --dir src/test/data/pa3/sample/ --test
FILE=op_cmp_int
TESTB=java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=..s --run --dir src/test/data/pa3/benchmarks/ --test
FILE=op_logical
clean:
$(CLEAN)
test:
......@@ -15,3 +16,9 @@ assembly:
java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=..s src/test/data/pa3/sample/$(FILE).py.ast.typed --out src/test/data/pa3/sample/$(FILE).py.s
reference-assembly:
java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=..r src/test/data/pa3/sample/$(FILE).py.ast.typed --out src/test/data/pa3/sample/$(FILE).py.s
testb:
$(TESTB)
clean-testb:
$(CLEAN) ; $(TESTB)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment