From 1ee1c71e9dbcb534d2bf8aa03a60d0fb9e077f23 Mon Sep 17 00:00:00 2001 From: Gavin Howard Date: Sat, 3 Nov 2018 10:36:37 -0600 Subject: Update bc for 1.1 release --- tests/files/bc/misc2.txt | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 tests/files/bc/misc2.txt (limited to 'tests/files/bc/misc2.txt') diff --git a/tests/files/bc/misc2.txt b/tests/files/bc/misc2.txt new file mode 100644 index 00000000..f5a6a6b1 --- /dev/null +++ b/tests/files/bc/misc2.txt @@ -0,0 +1,45 @@ +define x() { +"x" +return ( 1 ) +} +define y() { +"y" +return (2) +} +define z() { +"z" +return (3) +} + +if ( x() == y() ) {1} +1 +if ( x() <= y() ) {2} +if ( y() >= x() ) {3} +if ( x() != y() ) {4} +if ( x() < y() ) {5} +if ( y() > x() ) {6} + +if ( x() == z() ) {11} +11 +if ( x() <= z() ) {12} +if ( z() >= x() ) {13} +if ( x() != z() ) {14} +if ( x() < z() ) {15} +if ( z() > x() ) {16} + +x = -10 +while (x <= 0) { + x + if (x == -5) break; + x += 1 +} + +define u() { + auto a[]; + return a[0] +} + +u() + +if (x == -4) x +else x - 4 -- cgit v1.2.3