summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test09.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test09.bas')
-rw-r--r--apps/examples/bas/tests/test09.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test09.bas b/apps/examples/bas/tests/test09.bas
index d751b2474..7d5f72735 100644
--- a/apps/examples/bas/tests/test09.bas
+++ b/apps/examples/bas/tests/test09.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'LOCAL variables... '
-
-cat >test.bas <<eof
10 def fna(a)
20 local b
30 b=a+1
@@ -11,21 +6,4 @@ cat >test.bas <<eof
70 print b
80 print fna(4)
90 print b
-eof
-
-cat >test.ref <<eof
- 3
- 5
- 3
-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