summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test29.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test29.bas')
-rw-r--r--apps/examples/bas/tests/test29.bas25
1 files changed, 0 insertions, 25 deletions
diff --git a/apps/examples/bas/tests/test29.bas b/apps/examples/bas/tests/test29.bas
index 945f33e4d..fbc20942c 100644
--- a/apps/examples/bas/tests/test29.bas
+++ b/apps/examples/bas/tests/test29.bas
@@ -1,32 +1,7 @@
-#!/bin/sh
-
-echo -n $0: 'TDL INSTR... '
-
-cat >test.bas <<'eof'
print instr("123456789","456");" = 4?"
print INSTR("123456789","654");" = 0?"
print INSTR("1234512345","34");" = 3?"
print INSTR("1234512345","34",6);" = 8?"
print INSTR("1234512345","34",6,2);" = 0?"
print INSTR("1234512345","34",6,4);" = 8?"
-eof
-
-cat >test.ref <<'eof'
- 4 = 4?
- 0 = 0?
- 3 = 3?
- 8 = 8?
- 0 = 0?
- 8 = 8?
-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