summaryrefslogtreecommitdiff
path: root/test-suite/ide/undo013.fake
blob: 3b1c61e66d196f5b0cbecc1f42a5094a8b074d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Script simulating a dialog between coqide and coqtop -ideslave
# Run it via fake_ide
#
# Test backtracking in presence of nested proofs
# Second, trigger the full undo of an inner proof
#
INTERP Lemma aa : True -> True /\ True.
INTERP intro H.
INTERP split.
INTERP Lemma bb : False -> False.
INTERP intro H.
INTERP apply H.
INTERP Qed.
INTERP apply H.
INTERP Lemma cc : False -> True.
INTERP intro H.
INTERP destruct H.
INTERP Qed.
INTERP apply H.
REWIND 2
# We should now be just before "Lemma cc"
# <replay>
INTERP Lemma cc : False -> True.
INTERP intro H.
INTERP destruct H.
INTERP Qed.
INTERP apply H.
# </replay>
INTERP Qed.
INTERPRAW Fail idtac.
INTERPRAW Check (aa,bb,cc).