summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test01.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test01.bas')
-rw-r--r--apps/examples/bas/tests/test01.bas25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/examples/bas/tests/test01.bas b/apps/examples/bas/tests/test01.bas
index b89c7a73a..d2c3494e0 100644
--- a/apps/examples/bas/tests/test01.bas
+++ b/apps/examples/bas/tests/test01.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Scalar variable assignment... '
-
-cat >test.bas <<eof
10 a=1
20 print a
30 a$="hello"
@@ -13,23 +8,3 @@ cat >test.bas <<eof
80 print a
90 a=.2e-6
100 print a
-eof
-
-cat >test.ref <<eof
- 1
-hello
- 0.0002
- 2e-06
- 2e-07
-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