summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test40.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test40.bas')
-rw-r--r--apps/examples/bas/tests/test40.bas21
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/examples/bas/tests/test40.bas b/apps/examples/bas/tests/test40.bas
index d2c4eb0fe..5ddc05009 100644
--- a/apps/examples/bas/tests/test40.bas
+++ b/apps/examples/bas/tests/test40.bas
@@ -1,26 +1,5 @@
-#!/bin/sh
-
-echo -n $0: 'IMAGE... '
-
-cat >test.bas <<'eof'
d=3.1
print using "#.#";d
print using 10;d
10 image #.##
-eof
-
-cat >test.ref <<'eof'
-3.1
-3.10
-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