diff options
Diffstat (limited to 'test.sce')
-rw-r--r-- | test.sce | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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() |