diff options
| author | herbelin | 2010-10-03 22:26:57 +0000 |
|---|---|---|
| committer | herbelin | 2010-10-03 22:26:57 +0000 |
| commit | f09b8a7071666bcf9096955ee91dcd0ee02b6833 (patch) | |
| tree | 9aff1092a4f05e2184c55e14f4690ed539b7b1db | |
| parent | d90447fb31a0e195685c48515d72dcac060c6a1f (diff) | |
Test for non-regression of the display bug fixed in r13486.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13487 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | test-suite/output/Errors.out | 2 | ||||
| -rw-r--r-- | test-suite/output/Errors.v | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/output/Errors.out b/test-suite/output/Errors.out new file mode 100644 index 0000000000..f61b7ecf30 --- /dev/null +++ b/test-suite/output/Errors.out @@ -0,0 +1,2 @@ +The command has indeed failed with message: +=> Error: The field t is missing in Top.M. diff --git a/test-suite/output/Errors.v b/test-suite/output/Errors.v new file mode 100644 index 0000000000..75763f3b47 --- /dev/null +++ b/test-suite/output/Errors.v @@ -0,0 +1,9 @@ +(* Test error messages *) + +(* Test non-regression of bug fixed in r13486 (bad printer for module names) *) + +Module Type S. +Parameter t:Type. +End S. +Module M : S. +Fail End M. |
