diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-22 22:50:39 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-22 22:50:39 -0700 |
commit | 06b6e9d8138b1246a6e1bf72c9cda4d37e13ea84 (patch) | |
tree | cb75b4081342c4001cc456e61df589c815c1d635 /test_apps | |
parent | 5bc9a5b72e0cc0fb231193261e4957dd28bbb7e0 (diff) | |
download | mu-06b6e9d8138b1246a6e1bf72c9cda4d37e13ea84.tar.gz |
6382 - re-enable mu.subx in CI
I thought I'd done this in the previous commit, but I hadn't. And, what's more, there was a bug that seemed pretty tough for a time. Turns out my self-hosted translator doesn't support '.' comment tokens in data segments. Hopefully I'm past the valley of the shadow of death now. "I HAVE NO TOOLS BECAUSE I’VE DESTROYED MY TOOLS WITH MY TOOLS." -- James Mickens (https://www.usenix.org/system/files/1311_05-08_mickens.pdf)
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test_apps b/test_apps index a8c8eabe..28d045dc 100755 --- a/test_apps +++ b/test_apps @@ -333,9 +333,9 @@ do diff apps/$app a.elf done -#? # Mu translator -#? echo mu -#? ./translate_subx init.$OS [0-9]*.subx apps/mu.subx -#? diff apps/mu a.elf +# Mu translator +echo mu +./translate_subx init.$OS [0-9]*.subx apps/mu.subx +diff apps/mu a.elf exit 0 |