Skip to content

Commit

Permalink
Enable parallel test
Browse files Browse the repository at this point in the history
  • Loading branch information
leewei05 committed Dec 3, 2023
1 parent 22cc650 commit bd056f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: test clean

test:
turnt **/*.c --diff
turnt **/*.c --diff -j

clean:
rm -f *.s **/*.s *.o **/*.o *.ssa **/*.ssa
2 changes: 1 addition & 1 deletion test/codegen/turnt.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
command = "../../vitaminc -o test.ssa < {filename} && qbe -o out.s test.ssa && cc out.s -o a.o && ./a.o; echo $?"
command = "../../vitaminc -o {filename}.ssa < {filename} && qbe -o {filename}.s {filename}.ssa && cc {filename}.s -o {filename}.o && ./{filename}.o; echo $?"
output.exp = "-"

0 comments on commit bd056f8

Please sign in to comment.