Removed the "exit 1" calls, since now the Makefile does them.
authornipkow
Mon, 10 Apr 1995 08:47:43 +0200
changeset 1025 23190112d369
parent 1024 b86042000035
child 1026 f2dc38ed53ac
Removed the "exit 1" calls, since now the Makefile does them.
src/HOL/IMP/ROOT.ML
src/HOL/IOA/ROOT.ML
src/HOL/Integ/ROOT.ML
--- a/src/HOL/IMP/ROOT.ML	Mon Apr 10 08:40:58 1995 +0200
+++ b/src/HOL/IMP/ROOT.ML	Mon Apr 10 08:47:43 1995 +0200
@@ -19,7 +19,6 @@
 writeln"Root file for CHOL/IMP";
 proof_timing := true;
 loadpath := [".","IMP"];
-(time_use_thy "Properties";
- time_use_thy "Equiv";
- time_use_thy "Hoare"
-) handle _ => exit 1;
+time_use_thy "Properties";
+time_use_thy "Equiv";
+time_use_thy "Hoare";
--- a/src/HOL/IOA/ROOT.ML	Mon Apr 10 08:40:58 1995 +0200
+++ b/src/HOL/IOA/ROOT.ML	Mon Apr 10 08:47:43 1995 +0200
@@ -19,4 +19,4 @@
 goals_limit := 1;
 
 loadpath := "IOA/meta_theory" :: "IOA/example" :: !loadpath;
-use_thy "Correctness"  handle _ => exit 1;
+use_thy "Correctness";
--- a/src/HOL/Integ/ROOT.ML	Mon Apr 10 08:40:58 1995 +0200
+++ b/src/HOL/Integ/ROOT.ML	Mon Apr 10 08:47:43 1995 +0200
@@ -9,4 +9,4 @@
 CHOL_build_completed;    (*Cause examples to fail if CHOL did*)
 
 loadpath := ["Integ"];
-time_use_thy "Integ" handle _ => exit 1;
+time_use_thy "Integ";