about summary refs log tree commit diff stats
path: root/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-05-22 22:50:39 -0700
committerKartik Agaram <vc@akkartik.com>2020-05-22 22:50:39 -0700
commit06b6e9d8138b1246a6e1bf72c9cda4d37e13ea84 (patch)
treecb75b4081342c4001cc456e61df589c815c1d635 /test_apps
parent5bc9a5b72e0cc0fb231193261e4957dd28bbb7e0 (diff)
downloadmu-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-xtest_apps8
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
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247