summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test39.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test39.bas')
-rw-r--r--apps/examples/bas/tests/test39.bas20
1 files changed, 0 insertions, 20 deletions
diff --git a/apps/examples/bas/tests/test39.bas b/apps/examples/bas/tests/test39.bas
index 25c33d475..076c07be9 100644
--- a/apps/examples/bas/tests/test39.bas
+++ b/apps/examples/bas/tests/test39.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'Nested function and procedure calls... '
-
-cat >test.bas <<'eof'
def proc_a(x)
print fn_b(1,x)
end proc
@@ -14,19 +9,4 @@ def fn_c(b)
= b+3
proc_a(2)
-eof
-
-cat >test.ref <<'eof'
- 6
-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