summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test42.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bas/tests/test42.bas')
-rw-r--r--apps/examples/bas/tests/test42.bas36
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/examples/bas/tests/test42.bas b/apps/examples/bas/tests/test42.bas
new file mode 100644
index 000000000..f448251a4
--- /dev/null
+++ b/apps/examples/bas/tests/test42.bas
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+echo -n $0: 'Arithmetic... '
+
+cat >test.bas <<eof
+10 print 4.7\3
+20 print -2.3\1
+30 print int(-2.3)
+40 print int(2.3)
+50 print fix(-2.3)
+60 print fix(2.3)
+70 print fp(-2.3)
+80 print fp(2.3)
+eof
+
+cat >test.ref <<eof
+ 1
+-2
+-3
+ 2
+-2
+ 2
+-0.3
+ 0.3
+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