summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test20.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test20.bas')
-rw-r--r--apps/examples/bas/tests/test20.bas35
1 files changed, 0 insertions, 35 deletions
diff --git a/apps/examples/bas/tests/test20.bas b/apps/examples/bas/tests/test20.bas
index c8a1a06e1..6b982bf89 100644
--- a/apps/examples/bas/tests/test20.bas
+++ b/apps/examples/bas/tests/test20.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Caller trace... '
-
-cat >test.bas <<'eof'
10 gosub 20
20 gosub 30
30 procb
@@ -13,34 +8,4 @@ cat >test.bas <<'eof'
80 def procb
90 proca
100 end proc
-eof
-
-cat >test.ref <<'eof'
-hi
-Break in line 60 at:
-60 stop
- ^
-Proc Called in line 90 at:
-90 proca
- ^
-Proc Called in line 30 at:
-30 procb
- ^
-Called in line 20 at:
-20 gosub 30
- ^
-Called in line 10 at:
-10 gosub 20
- ^
-eof
-
-sh ./test/runbas test.bas >test.data
-if cmp test.ref test.data
-then
- rm -f test.*
- echo passed
-else
- echo failed
- exit 1
-fi