]> matita.cs.unibo.it Git - fireball-separation.git/commitdiff
All output to stdout (in place of stderr).
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 6 Jun 2018 15:02:10 +0000 (17:02 +0200)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Wed, 6 Jun 2018 15:02:10 +0000 (17:02 +0200)
This commit could be cherry-picked in the other branches as well.

ocaml/simple_test.ml

index 438b7b572f0a6ebc845a0a90514a2e3c19782664..49ea28f78bc5a6d491768c975789b9892c9f2355 100644 (file)
@@ -30,7 +30,7 @@ let gen n vars =
 
 
 let rec repeat f n =
-  prerr_endline "\n########################### NEW TEST ###########################";
+  print_endline "\n########################### NEW TEST ###########################";
   f () ;
   if n > 0 then repeat f (n-1)
 ;;
@@ -51,5 +51,5 @@ let main =
     (solve ++ problem_of ++ Parser.problem_of_string) str
   ) num ;
 
-  prerr_endline "\n---- ALL TESTS COMPLETED ----"
+  print_endline "\n---- ALL TESTS COMPLETED ----"
 ;;