summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test35.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test35.bas')
-rw-r--r--apps/examples/bas/tests/test35.bas23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/examples/bas/tests/test35.bas b/apps/examples/bas/tests/test35.bas
index 448fc0dfa..158f20719 100644
--- a/apps/examples/bas/tests/test35.bas
+++ b/apps/examples/bas/tests/test35.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Real to integer conversion... '
-
-cat >test.bas <<'eof'
a%=1.2
print a%
a%=1.7
@@ -11,22 +6,4 @@ a%=-0.2
print a%
a%=-0.7
print a%
-eof
-
-cat >test.ref <<'eof'
- 1
- 2
- 0
--1
-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