aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-10-17 22:39:11 +0000
committerGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-10-17 22:39:11 +0000
commit899d106811d830a9195e5e02a3f136a8a587ccde (patch)
tree52855aaa73f87b8c1d5b647da6284d4395666224
parent89a68d6a386b0986c06590e21ca3f46375d9b06b (diff)
Fix test-suite output/* in bench
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15906 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--test-suite/Makefile1
-rw-r--r--toplevel/coqtop.ml2
2 files changed, 1 insertions, 2 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index beea5d94a..8008cac00 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -268,7 +268,6 @@ $(addsuffix .log,$(wildcard output/*.v)): %.v.log: %.v
| grep -v "Welcome to Coq" \
| grep -v "\[Loading ML file" \
| grep -v "Skipping rcfile loading" \
- | tail -n +2 \
> $$tmpoutput; \
diff -u $*.out $$tmpoutput 2>&1; R=$$?; times; \
if [ $$R = 0 ]; then \
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml
index 64e98d641..fd7dfe89b 100644
--- a/toplevel/coqtop.ml
+++ b/toplevel/coqtop.ml
@@ -32,7 +32,7 @@ let get_version_date () =
let print_header () =
let (ver,rev) = (get_version_date ()) in
- pp (str "Welcome to Coq "++ str ver ++ str " (" ++ str rev ++ str ")\n");
+ pp (str "Welcome to Coq "++ str ver ++ str " (" ++ str rev ++ str ")" ++ fnl ());
flush stdout
let output_context = ref false