Skip to content

Commit ac02c93

Browse files
committed
Update tests to rocq
1 parent 905eaff commit ac02c93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
COQC=coqc
1+
ROCQC=rocq c
22

33
all: success output
44

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

99
success/%.vo: success/%.v
10-
$(COQC) $<
10+
$(ROCQC) $<
1111

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

0 commit comments

Comments
 (0)