about summary refs log tree commit diff stats
path: root/subx/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-04-16 23:31:14 -0700
committerKartik Agaram <vc@akkartik.com>2019-04-16 23:31:14 -0700
commitfd75b398ba7999a105c82973af79d5c545cb46e9 (patch)
treeca9723d854c0c3b1cfb029bdb5327891c4fad534 /subx/test_apps
parentfb36c0a59e5e84aa28a49759f18aa50cf06e8a42 (diff)
downloadmu-fd75b398ba7999a105c82973af79d5c545cb46e9.tar.gz
5105
Pull in a _different_ function than `next-word` (commit 5092) into a shared
file between phases. Let's see how this goes.
Diffstat (limited to 'subx/test_apps')
-rwxr-xr-xsubx/test_apps14
1 files changed, 7 insertions, 7 deletions
diff --git a/subx/test_apps b/subx/test_apps
index 363969a5..6481fe20 100755
--- a/subx/test_apps
+++ b/subx/test_apps
@@ -129,7 +129,7 @@ echo ex12
 test `uname` = 'Linux'  &&  examples/ex12
 
 echo handle
-./subx translate *.subx apps/handle.subx  -o apps/handle
+./subx translate 0*.subx apps/handle.subx  -o apps/handle
 [ "$1" != record ]  &&  git diff --quiet apps/handle
 ./subx run apps/handle 2>&1  |grep -q 'lookup failed'
 test `uname` = 'Linux'  &&  {
@@ -137,7 +137,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo factorial
-./subx translate *.subx apps/factorial.subx  -o apps/factorial
+./subx translate 0*.subx apps/factorial.subx  -o apps/factorial
 [ "$1" != record ]  &&  git diff --quiet apps/factorial
 ./subx run apps/factorial  ||  ret=$?
 test $ret -eq 120  # factorial(5)
@@ -151,7 +151,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo crenshaw2-1
-./subx translate *.subx apps/crenshaw2-1.subx  -o apps/crenshaw2-1
+./subx translate 0*.subx apps/crenshaw2-1.subx  -o apps/crenshaw2-1
 [ "$1" != record ]  &&  git diff --quiet apps/crenshaw2-1
 ./subx run apps/crenshaw2-1 test
 echo
@@ -161,7 +161,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo crenshaw2-1b
-./subx translate *.subx apps/crenshaw2-1b.subx  -o apps/crenshaw2-1b
+./subx translate 0*.subx apps/crenshaw2-1b.subx  -o apps/crenshaw2-1b
 [ "$1" != record ]  &&  git diff --quiet apps/crenshaw2-1b
 ./subx run apps/crenshaw2-1b test
 echo
@@ -171,7 +171,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo hex
-./subx translate *.subx apps/hex.subx  -o apps/hex
+./subx translate 0*.subx apps/hex.subx  -o apps/hex
 [ "$1" != record ]  &&  git diff --quiet apps/hex
 ./subx run apps/hex test
 echo
@@ -181,7 +181,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo pack
-./subx translate *.subx apps/pack.subx  -o apps/pack
+./subx translate 0*.subx apps/subx-common.subx apps/pack.subx  -o apps/pack
 [ "$1" != record ]  &&  git diff --quiet apps/pack
 ./subx run apps/pack test
 echo
@@ -191,7 +191,7 @@ test `uname` = 'Linux'  &&  {
 }
 
 echo assort
-./subx translate *.subx apps/assort.subx  -o apps/assort
+./subx translate 0*.subx apps/subx-common.subx apps/assort.subx  -o apps/assort
 [ "$1" != record ]  &&  git diff --quiet apps/assort
 ./subx run apps/assort test
 echo