summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2009-11-13 01:37:29 +0000
committerAdrian Thurston <thurston@complang.org>2009-11-13 01:37:29 +0000
commitc86755d4d82ff40594654bf1d0d1369a32a972af (patch)
tree4340e6225da93358b03247f17e93db96edb05a0a /test
parentcf7457af1c9dcbf6796120e3f55eaba82932cd9e (diff)
downloadcolm-c86755d4d82ff40594654bf1d0d1369a32a972af.tar.gz
More work on figuring out the relationship between PdaRun, FsmRun and
InputStream. Moved the runBuf into FsmRun. The other runtime vars will go there too. We need a function for InputStream to 'take back' any data in the runBuf that has not yet been parsed, so the two can be disassociated. The data that's already been parsed needs to stay in the FsmRun, as it is the place that token data points into.
Diffstat (limited to 'test')
-rwxr-xr-xtest/runtests2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtests b/test/runtests
index 686de6d6..d053b45e 100755
--- a/test/runtests
+++ b/test/runtests
@@ -29,7 +29,7 @@ for t in $TESTS; do
fi
# Test output.
- if ! diff -u $root.out $root.exp; then
+ if ! diff -u $root.exp $root.out; then
echo FAILURE
exit 1
fi