diff options
author | gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-08-08 18:52:05 +0000 |
---|---|---|
committer | gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2013-08-08 18:52:05 +0000 |
commit | 2b9bc762ae31266212e7ab2defec7df41b08b6f8 (patch) | |
tree | 610012a5fa7b6b3b72cbc0b56f3e702477f34f9c /test-suite/output | |
parent | 0a329ae992825e98314ba4c6c4c6152d60b2bbeb (diff) |
Fix testsuite so that it works with STM
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16676 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output')
-rw-r--r-- | test-suite/output/simpl.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/output/simpl.v b/test-suite/output/simpl.v index 5f1926f14..89638eedd 100644 --- a/test-suite/output/simpl.v +++ b/test-suite/output/simpl.v @@ -4,10 +4,10 @@ Goal forall x, 0+x = 1+x. intro x. simpl (_ + x). Show. -Undo. +Undo 2. simpl (_ + x) at 2. Show. -Undo. +Undo 2. simpl (0 + _). Show. -Undo. +Undo 2. |