aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/failure/ltac4.v
diff options
context:
space:
mode:
authorGravatar xclerc <xclerc@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-09-20 09:34:06 +0000
committerGravatar xclerc <xclerc@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-09-20 09:34:06 +0000
commit56b3ad583852438a1378280e9b269f8020a9524c (patch)
treee43220cffb3545b57180257afcbf34586dfa1763 /test-suite/failure/ltac4.v
parentfdd84089a127e7f12f43a5dd02547594effd0964 (diff)
Use "Fail" rather than rely on exit code.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16792 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/failure/ltac4.v')
-rw-r--r--test-suite/failure/ltac4.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/failure/ltac4.v b/test-suite/failure/ltac4.v
index 414712754..5b0396d16 100644
--- a/test-suite/failure/ltac4.v
+++ b/test-suite/failure/ltac4.v
@@ -1,5 +1,6 @@
(* Check static globalisation of tactic names *)
(* Proposed by Benjamin (mars 2002) *)
Goal forall n : nat, n = n.
-induction n; try REflexivity.
+induction n.
+Fail try REflexivity.