summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test04.bas
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-07 14:36:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-07 14:36:02 -0600
commit1c5e93117d6951dc65d4914ee8e9507af143d2b4 (patch)
treed0e1afe7d6b5cfba2221933e42ad9305f190003f /apps/examples/bas/tests/test04.bas
parent20c645e1cdf2456d09e3c85d2b21e4c32b88b83e (diff)
downloadpx4-nuttx-1c5e93117d6951dc65d4914ee8e9507af143d2b4.tar.gz
px4-nuttx-1c5e93117d6951dc65d4914ee8e9507af143d2b4.tar.bz2
px4-nuttx-1c5e93117d6951dc65d4914ee8e9507af143d2b4.zip
BAS: Convert all BAS text scripts to BASIC files
Diffstat (limited to 'apps/examples/bas/tests/test04.bas')
-rw-r--r--apps/examples/bas/tests/test04.bas28
1 files changed, 0 insertions, 28 deletions
diff --git a/apps/examples/bas/tests/test04.bas b/apps/examples/bas/tests/test04.bas
index 547f4ec28..f2755e5a9 100644
--- a/apps/examples/bas/tests/test04.bas
+++ b/apps/examples/bas/tests/test04.bas
@@ -1,34 +1,6 @@
-#!/bin/sh
-
-echo -n $0: 'REPEAT UNTIL loop... '
-
-cat >test.bas <<eof
10 a=1
20 repeat
30 print a
40 a=a+1
50 until a=10
-eof
-
-cat >test.ref <<eof
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
-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