summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test33.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test33.bas')
-rw-r--r--apps/examples/bas/tests/test33.bas22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/examples/bas/tests/test33.bas b/apps/examples/bas/tests/test33.bas
index adc53dd62..2d64a4d05 100644
--- a/apps/examples/bas/tests/test33.bas
+++ b/apps/examples/bas/tests/test33.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'OPEN FOR BINARY... '
-
-cat >test.bas <<'eof'
open "test.out" for binary as 1
put 1,1,"xy"
put 1,3,"z!"
@@ -19,21 +14,4 @@ print s$
print x
print n%
kill "test.out"
-eof
-
-cat >test.ref <<'eof'
-xyz!
- 0.333333
- 9999
-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