about summary refs log tree commit diff stats
path: root/subx/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-28 00:14:07 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-28 00:19:46 -0700
commiteb9087635be7d282172ed77d65b4b9136fff16aa (patch)
tree8b0469301869bd8763d7ddce77f54caa02142169 /subx/test_apps
parent5f842b0e5e27fe0b3acef958c87a91713a938455 (diff)
downloadmu-eb9087635be7d282172ed77d65b4b9136fff16aa.tar.gz
4729
Start injecting all dependencies in the Crenshaw compiler app.

In the process I realized the non-fake code path of 'stop' had a bug.
Diffstat (limited to 'subx/test_apps')
-rwxr-xr-xsubx/test_apps4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/test_apps b/subx/test_apps
index 4071a8df..7ee7809e 100755
--- a/subx/test_apps
+++ b/subx/test_apps
@@ -144,10 +144,10 @@ echo crenshaw2-1
 CFLAGS=-g ./subx translate *.subx apps/crenshaw2-1.subx  -o apps/crenshaw2-1
 git diff --quiet apps/crenshaw2-1
 CFLAGS=-g ./subx run apps/crenshaw2-1 2>crenshaw2-1.out  ||  true
-test "`cat crenshaw2-1.out`" = 'Error: Integer expected'
+test "`cat crenshaw2-1.out`" = 'Error: integer expected'
 test `uname` = 'Linux'  &&  {
   apps/crenshaw2-1 2>crenshaw2-1.out  ||  true
-  test "`cat crenshaw2-1.out`" = 'Error: Integer expected'
+  test "`cat crenshaw2-1.out`" = 'Error: integer expected'
 }
 
 exit 0