diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-17 22:55:53 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-20 11:39:19 -0700 |
commit | a2af4dedac491383c0c0169e75d32396a6ffd019 (patch) | |
tree | 858a7d99d5b9cf599a2f1e3b83e83f01de9c64d8 /test_apps | |
parent | 9f07cea8f1501eb603847b91751d556f6c121dd1 (diff) | |
download | mu-a2af4dedac491383c0c0169e75d32396a6ffd019.tar.gz |
mu.subx: start tracking remaining failing tests
We're now passing CI again.
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test_apps b/test_apps index 6a637fcd..6cca4292 100755 --- a/test_apps +++ b/test_apps @@ -283,18 +283,18 @@ test `uname` = 'Linux' && { echo } -#? echo mu -#? cat init.$OS [0-9]*.subx apps/mu.subx | apps/braces | apps/calls | apps/sigils > a.sigils -#? ./bootstrap translate a.sigils -o apps/mu -#? [ "$1" != record ] && git diff --exit-code apps/mu -#? test $EMULATED && { -#? ./bootstrap run apps/mu test -#? echo -#? } -#? test `uname` = 'Linux' && { -#? apps/mu test -#? echo -#? } +echo mu +cat init.$OS [0-9]*.subx apps/mu.subx | apps/braces | apps/calls | apps/sigils > a.sigils +./bootstrap translate a.sigils -o apps/mu +[ "$1" != record ] && git diff --exit-code apps/mu +test $EMULATED && { + ./bootstrap run apps/mu test + echo +} +test `uname` = 'Linux' && { + apps/mu test + echo +} test $NATIVE || exit 0 echo "== translating using SubX (native only)" |