diff options
| author | Enrico Tassi | 2014-02-10 15:38:58 +0100 |
|---|---|---|
| committer | Enrico Tassi | 2014-02-10 18:04:10 +0100 |
| commit | 41845e6d4334eeaa7addf6b11f6cb4cda5a7f8cc (patch) | |
| tree | 6f96af6235de9141185252369baa4acdbc4d28c5 /test-suite | |
| parent | cee357d2457295473dfe5ca4ebd8948bb7bca498 (diff) | |
fake_ide: ported to spawn
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/Makefile | 6 | ||||
| -rw-r--r-- | test-suite/ide/undo007.fake | 20 |
2 files changed, 3 insertions, 23 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile index 83ea91a7df..389dffc49b 100644 --- a/test-suite/Makefile +++ b/test-suite/Makefile @@ -218,8 +218,8 @@ $(addsuffix .log,$(wildcard stm/*.v)): %.v.log: %.v @echo "TEST $<" $(HIDE){ \ echo $(call log_intro,$<); \ - $(coqc) "$*" -coq-slaves on \ - -coq-slaves-opts fallback-to-lazy-if-marshal-error=no,fallback-to-lazy-if-slave-dies=no \ + $(coqc) "$*" -async-proofs on \ + -async-proofs-worker-flags fallback-to-lazy-if-marshal-error=no,fallback-to-lazy-if-slave-dies=no \ $$opts 2>&1; R=$$?; times; \ if [ $$R = 0 ]; then \ echo $(log_success); \ @@ -416,7 +416,7 @@ ide : $(patsubst %.fake,%.fake.log,$(wildcard ide/*.fake)) @echo "TEST $<" $(HIDE){ \ echo $(call log_intro,$<); \ - $(BIN)fake_ide $< "$(BIN)coqtop -boot -coq-slaves on -coq-slaves-opts min-proof-length-to-delegate=0" 2>&1; \ + $(BIN)fake_ide $< "$(BIN)coqtop -boot -async-proofs on -async-proofs-worker-flags min-proof-length-to-delegate=0" 2>&1; \ if [ $$? = 0 ]; then \ echo $(log_success); \ echo " $<...Ok"; \ diff --git a/test-suite/ide/undo007.fake b/test-suite/ide/undo007.fake deleted file mode 100644 index 7a1dc81e0b..0000000000 --- a/test-suite/ide/undo007.fake +++ /dev/null @@ -1,20 +0,0 @@ -# Script simulating a dialog between coqide and coqtop -ideslave -# Run it via fake_ide -# -# Undoing declarations, as first step -# new in 8.2 -# -ADD { Theorem d : O=O. } -ADD here { Definition e := O. } -ADD { Definition f := O. } - -# This is a bug in Stm undo, e is lost from master -EDIT_AT here -ADD { Definition f := O. } -ADD { assert True by trivial. } -ADD { exact (eq_refl e). } -ADD { Qed. } -# QUERY { Stm PrintDag. } -# QUERY { Stm Finish. } -QUERY { Print d. } -QUERY { Check e. } |
