diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-07-20 22:17:57 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-07-20 22:17:57 -0700 |
commit | 3a5512389ed0f545fff82723f16bdea69f2e4b85 (patch) | |
tree | b05c16c62d50a1f4c2379bddaa914ff3f7a1e547 | |
parent | 97dbe33fd41ec089adbf10a8b1f90d4b86c2bacd (diff) | |
download | mu-3a5512389ed0f545fff82723f16bdea69f2e4b85.tar.gz |
6661
-rw-r--r-- | apps/mu.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/mu.subx b/apps/mu.subx index b8d3d579..4fce90c7 100644 --- a/apps/mu.subx +++ b/apps/mu.subx @@ -2562,11 +2562,11 @@ test-stmt-defines-output-in-same-register-as-inout: 89/<- %edx 4/r32/esp (flush _test-output-buffered-file) (flush _test-error-buffered-file) -#? # dump _test-output-stream {{{ +#? # dump _test-error-stream {{{ #? (write 2 "^") -#? (write-stream 2 _test-output-stream) +#? (write-stream 2 _test-error-stream) #? (write 2 "$\n") -#? (rewind-stream _test-output-stream) +#? (rewind-stream _test-error-stream) #? # }}} # no error; we looked up 'y' correctly before pushing the binding for 'x' (check-stream-equal _test-error-stream "" "F - test-stmt-defines-output-in-same-register-as-inout: error stream should be empty") |