aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-08-28 16:23:53 +0000
committerGitHub2020-08-28 16:23:53 +0000
commit511c280825ea30cb93fa00e47d487875a489ac2c (patch)
tree5b5c9b641c88c9d78cbb3633e83993c3676c4c7d /test-suite
parent911f33f0a0ff648082d329841388f59e8cecf231 (diff)
parent9d319872a1668775ba1d72ae856f46fd7f082bb9 (diff)
Merge PR #12932: par: print relevant subgoal when failing
Reviewed-by: gares
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Partac.out6
-rw-r--r--test-suite/output/Partac.v6
2 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/output/Partac.out b/test-suite/output/Partac.out
new file mode 100644
index 0000000000..889e698fa2
--- /dev/null
+++ b/test-suite/output/Partac.out
@@ -0,0 +1,6 @@
+The command has indeed failed with message:
+The term "false" has type "bool" while it is expected to have type "nat".
+(for subgoal 1)
+The command has indeed failed with message:
+The term "0" has type "nat" while it is expected to have type "bool".
+(for subgoal 2)
diff --git a/test-suite/output/Partac.v b/test-suite/output/Partac.v
new file mode 100644
index 0000000000..f579ee683b
--- /dev/null
+++ b/test-suite/output/Partac.v
@@ -0,0 +1,6 @@
+Goal nat * bool.
+Proof.
+ split.
+ Fail par: exact false.
+ Fail par: exact 0.
+Abort.