about summary refs log tree commit diff stats
path: root/apps/hex.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-08-13 12:27:15 -0700
committerKartik Agaram <vc@akkartik.com>2019-08-13 12:27:15 -0700
commit63b8b18ef7594fd0bba8e936c40697c68d1376d9 (patch)
tree8c3ccc6e5228eb5a75fa43ac789a08de7652ee0d /apps/hex.subx
parent64e8faba379a43a8768bb4dd81c49ec328bf917b (diff)
downloadmu-63b8b18ef7594fd0bba8e936c40697c68d1376d9.tar.gz
standardize test input/output/error streams
Diffstat (limited to 'apps/hex.subx')
-rw-r--r--apps/hex.subx32
1 files changed, 0 insertions, 32 deletions
diff --git a/apps/hex.subx b/apps/hex.subx
index 02f29b5e..a2580e66 100644
--- a/apps/hex.subx
+++ b/apps/hex.subx
@@ -1480,36 +1480,4 @@ test-skip-until-newline:
     # . end
     c3/return
 
-== data
-
-_test-error-stream:
-    # current write index
-    0/imm32
-    # current read index
-    0/imm32
-    # line
-    0x80/imm32  # 128 bytes
-    # data (8 lines x 16 bytes/line)
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-
-# a test buffered file for _test-error-stream
-_test-error-buffered-file:
-    # file descriptor or (address stream)
-    _test-error-stream/imm32
-    # current write index
-    0/imm32
-    # current read index
-    0/imm32
-    # length
-    6/imm32
-    # data
-    00 00 00 00 00 00  # 6 bytes
-
 # . . vim:nowrap:textwidth=0