summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test36.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test36.bas')
-rw-r--r--apps/examples/bas/tests/test36.bas23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/examples/bas/tests/test36.bas b/apps/examples/bas/tests/test36.bas
index b26cffae3..c7bd6f054 100644
--- a/apps/examples/bas/tests/test36.bas
+++ b/apps/examples/bas/tests/test36.bas
@@ -1,8 +1,3 @@
-#!/bin/sh
-
-echo -n $0: 'OPEN file locking... '
-
-cat >test.bas <<'eof'
on error goto 10
print "opening file"
open "test.out" for output lock write as #1
@@ -10,22 +5,4 @@ print "open succeeded"
if command$<>"enough" then shell "sh ./test/runbas test.bas enough"
end
10 print "open failed"
-eof
-
-cat >test.ref <<'eof'
-opening file
-open succeeded
-opening file
-open failed
-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