aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGavin Howard <yzena.tech@gmail.com>2019-02-18 19:52:27 -0700
committerGavin Howard <yzena.tech@gmail.com>2019-02-18 19:52:27 -0700
commitd1c75d6b9533855cee8d724c03b648f9e3fee119 (patch)
tree3db0a6c6ec63407c12a002d82971042bd69b9431 /tests
parent0767fd7f936b8e126357a679a7233ac9544d8757 (diff)
downloadplatform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.tar.gz
platform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.tar.bz2
platform_external_bc-d1c75d6b9533855cee8d724c03b648f9e3fee119.zip
Fix an error test
Diffstat (limited to 'tests')
-rw-r--r--tests/bc/errors.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bc/errors.txt b/tests/bc/errors.txt
index a730382e..0c595eb2 100644
--- a/tests/bc/errors.txt
+++ b/tests/bc/errors.txt
@@ -183,7 +183,7 @@ print;
print 1,2 print 45
print "s" "4"
}
-for (i=0; i; ++i) if (i) print "stuff"; else i; if (!i) i + 1; else i;
+for (i=0; i; ++i) if (i) print "stuff"; else i; if (!i) i + 1; else i; }
if (i == 0) break; else i;
while (x != 0) { break 4; }
while (x != 0) { continue 4; }