Skip to content

Commit

Permalink
Update tests to rocq
Browse files Browse the repository at this point in the history
  • Loading branch information
proux01 committed Jan 25, 2025
1 parent 905eaff commit ac02c93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
COQC=coqc
ROCQC=rocq c

all: success output

Expand All @@ -7,10 +7,10 @@ success: $(addsuffix o,$(wildcard success/*.v))
output: $(addsuffix o,$(wildcard output/*.v))

success/%.vo: success/%.v
$(COQC) $<
$(ROCQC) $<

output/%.vo: output/%.v
input=$<; \
output=$${input%.v}.out.real; \
$(COQC) $< 2>&1 > $$output; \
$(ROCQC) $< 2>&1 > $$output; \
diff --strip-trailing-cr $${input%.v}.out $$output

0 comments on commit ac02c93

Please sign in to comment.