From 1c5e93117d6951dc65d4914ee8e9507af143d2b4 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 7 Nov 2014 14:36:02 -0600 Subject: BAS: Convert all BAS text scripts to BASIC files --- apps/examples/bas/tests/test34.bas | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'apps/examples/bas/tests/test34.bas') diff --git a/apps/examples/bas/tests/test34.bas b/apps/examples/bas/tests/test34.bas index 0419284d8..2cd77b914 100644 --- a/apps/examples/bas/tests/test34.bas +++ b/apps/examples/bas/tests/test34.bas @@ -1,8 +1,3 @@ -#!/bin/sh - -echo -n $0: 'OPTION BASE... ' - -cat >test.bas <<'eof' option base 3 dim a(3,5) a(3,3)=1 @@ -20,24 +15,4 @@ print a(3,3) print a(3,5) print b(-2,-2) print b(-1,2) -eof - -cat >test.ref <<'eof' - 1 - 2 - 1 - 2 - 10 - 20 -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 -- cgit v1.2.3