diff options
author | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-10-19 16:04:20 +0200 |
---|---|---|
committer | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-10-19 16:11:49 +0200 |
commit | fb1478d2cd59991e8d2fc2e07dacad505ef110b7 (patch) | |
tree | e7dd750ed8926e69a4076d5b529933da18007fcd /test-suite/output | |
parent | 6bda57bd75efe55fe1f7774f932e9ef5a65aeaaf (diff) |
Moving bug numbers to BZ# format in the test-suite.
Compared to the original proposition (59a594b in #960), this commit
only changes files containing bug numbers that are also PR numbers.
Diffstat (limited to 'test-suite/output')
-rw-r--r-- | test-suite/output/Fixpoint.v | 2 | ||||
-rw-r--r-- | test-suite/output/Implicit.v | 2 | ||||
-rw-r--r-- | test-suite/output/Tactics.v | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/output/Fixpoint.v b/test-suite/output/Fixpoint.v index fafb478ba..61ae4edbd 100644 --- a/test-suite/output/Fixpoint.v +++ b/test-suite/output/Fixpoint.v @@ -7,7 +7,7 @@ Check | a :: l => f a :: F _ _ f l end). -(* V8 printing of this term used to failed in V8.0 and V8.0pl1 (cf bug #860) *) +(* V8 printing of this term used to failed in V8.0 and V8.0pl1 (cf BZ#860) *) Check let fix f (m : nat) : nat := match m with diff --git a/test-suite/output/Implicit.v b/test-suite/output/Implicit.v index 7c9b89f9d..306532c0d 100644 --- a/test-suite/output/Implicit.v +++ b/test-suite/output/Implicit.v @@ -1,7 +1,7 @@ Set Implicit Arguments. Unset Strict Implicit. -(* Suggested by Pierre Casteran (bug #169) *) +(* Suggested by Pierre Casteran (BZ#169) *) (* Argument 3 is needed to typecheck and should be printed *) Definition compose (A B C : Set) (f : A -> B) (g : B -> C) (x : A) := g (f x). Check (compose (C:=nat) S). diff --git a/test-suite/output/Tactics.v b/test-suite/output/Tactics.v index 9a5edb813..75b66e463 100644 --- a/test-suite/output/Tactics.v +++ b/test-suite/output/Tactics.v @@ -7,12 +7,12 @@ Ltac f H := split; [a H|e H]. Print Ltac f. (* Test printing of match context *) -(* Used to fail after translator removal (see bug #1070) *) +(* Used to fail after translator removal (see BZ#1070) *) Ltac g := match goal with |- context [if ?X then _ else _ ] => case X end. Print Ltac g. -(* Test an error message (#5390) *) +(* Test an error message (BZ#5390) *) Lemma myid (P : Prop) : P <-> P. Proof. split; auto. Qed. |