summaryrefslogtreecommitdiff
path: root/test.sce
blob: 5d5b2b60c49ddce43260c4dfd42a78bcbcf8861d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
exec loader.sce
exec builder.sce

exec('test1.sce',-1)
exec('test2.sce',-1)
exec('test3.sce',-1)
exec('test4.sce',-1)

if test1==1
		exit(1)
elseif test2==1
		exit(1)
elseif test3==1
		exit(1)
elseif test4==1
		exit(1)
else
		disp("ALL OK")
		exit()
end