summaryrefslogtreecommitdiff
path: root/test.sce
diff options
context:
space:
mode:
Diffstat (limited to 'test.sce')
-rw-r--r--test.sce17
1 files changed, 15 insertions, 2 deletions
diff --git a/test.sce b/test.sce
index c4f7535..939414f 100644
--- a/test.sce
+++ b/test.sce
@@ -1,6 +1,19 @@
exec loader.sce
exec builder.sce
-disp(whos)
+exec test1.sce
+exec test2.sce
+exec test3.sce
+
+if test1==1
+ exit(1)
+elseif test2==1
+ exit(1)
+elseif test3==1
+ exit(1)
+else
+ disp("ALL OK")
+ exit()
+end
+
-exit()