summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test30.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test30.bas')
-rw-r--r--apps/examples/bas/tests/test30.bas20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/examples/bas/tests/test30.bas b/apps/examples/bas/tests/test30.bas
index 0d7b29a26..06cea549a 100644
--- a/apps/examples/bas/tests/test30.bas
+++ b/apps/examples/bas/tests/test30.bas
@@ -1,22 +1,2 @@
-#!/bin/sh
-
-echo -n $0: 'Type mismatch check... '
-
-cat >test.bas <<'eof'
print 1+"a"
-eof
-
-cat >test.ref <<'eof'
-Error: Invalid binary operand at: end of program
-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