From c5e6f5ee545ee24541836233a18c0c772077fbdf Mon Sep 17 00:00:00 2001 From: Tej Chajed Date: Wed, 8 Mar 2017 14:57:16 -0500 Subject: Run non-tactic comands without resilient_command --- test-suite/output/ErrorInModule.out | 2 ++ test-suite/output/ErrorInModule.v | 4 ++++ test-suite/output/ErrorInSection.out | 2 ++ test-suite/output/ErrorInSection.v | 4 ++++ 4 files changed, 12 insertions(+) create mode 100644 test-suite/output/ErrorInModule.out create mode 100644 test-suite/output/ErrorInModule.v create mode 100644 test-suite/output/ErrorInSection.out create mode 100644 test-suite/output/ErrorInSection.v (limited to 'test-suite') diff --git a/test-suite/output/ErrorInModule.out b/test-suite/output/ErrorInModule.out new file mode 100644 index 000000000..851ecd930 --- /dev/null +++ b/test-suite/output/ErrorInModule.out @@ -0,0 +1,2 @@ +File "stdin", line 3, characters 20-31: +Error: The reference nonexistent was not found in the current environment. diff --git a/test-suite/output/ErrorInModule.v b/test-suite/output/ErrorInModule.v new file mode 100644 index 000000000..e69e23276 --- /dev/null +++ b/test-suite/output/ErrorInModule.v @@ -0,0 +1,4 @@ +(* -*- mode: coq; coq-prog-args: ("-emacs" "-quick") -*- *) +Module M. + Definition foo := nonexistent. +End M. diff --git a/test-suite/output/ErrorInSection.out b/test-suite/output/ErrorInSection.out new file mode 100644 index 000000000..851ecd930 --- /dev/null +++ b/test-suite/output/ErrorInSection.out @@ -0,0 +1,2 @@ +File "stdin", line 3, characters 20-31: +Error: The reference nonexistent was not found in the current environment. diff --git a/test-suite/output/ErrorInSection.v b/test-suite/output/ErrorInSection.v new file mode 100644 index 000000000..3036f8f05 --- /dev/null +++ b/test-suite/output/ErrorInSection.v @@ -0,0 +1,4 @@ +(* -*- mode: coq; coq-prog-args: ("-emacs" "-quick") -*- *) +Section S. + Definition foo := nonexistent. +End S. -- cgit v1.2.3