diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-04-15 23:15:12 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-04-15 23:15:12 -0700 |
commit | 2f581f1b07b3b9be655238f07e2f71eb0a0d8f30 (patch) | |
tree | 70a1827bfbde24f43150ec37a3be6c3294e87249 /subx/test_apps | |
parent | 2200c689814c2aa7c2a90c68d24d15de141b6280 (diff) | |
download | mu-2f581f1b07b3b9be655238f07e2f71eb0a0d8f30.tar.gz |
5092
Realization: 'next-word' can't be reused in converting string literals, because it has to understand string literals. Let's just keep each phase self-contained.
Diffstat (limited to 'subx/test_apps')
-rwxr-xr-x | subx/test_apps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/test_apps b/subx/test_apps index 4378a9df..363969a5 100755 --- a/subx/test_apps +++ b/subx/test_apps @@ -181,7 +181,7 @@ test `uname` = 'Linux' && { } echo pack -./subx translate *.subx apps/subx-common.subx apps/pack.subx -o apps/pack +./subx translate *.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/subx-common.subx apps/assort.subx -o apps/assort +./subx translate *.subx apps/assort.subx -o apps/assort [ "$1" != record ] && git diff --quiet apps/assort ./subx run apps/assort test echo |