summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test48.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test48.bas')
-rw-r--r--apps/examples/bas/tests/test48.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test48.bas b/apps/examples/bas/tests/test48.bas
index fe2a9e870..223bc1c3e 100644
--- a/apps/examples/bas/tests/test48.bas
+++ b/apps/examples/bas/tests/test48.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Multi assignment... '
-
-cat >test.bas <<'eof'
a,b = 10
print a,b
dim c(10)
@@ -10,21 +5,4 @@ a,c(a) = 2
print a,c(2),c(10)
a$,b$="test"
print a$,b$
-eof
-
-cat >test.ref <<'eof'
- 10 10
- 2 0 2
-test test
-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