about summary refs log tree commit diff stats
path: root/054string-equal.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-05 23:29:24 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-05 23:29:24 -0800
commit58467e6cbc4fce0c11a5200b9846c7a47ec874d9 (patch)
tree83c2bb1fb4f2382e7d5f4d425bedda265894373a /054string-equal.subx
parentc7a5d74252419a5582f1e68ed7bb393d3f6e06c8 (diff)
downloadmu-58467e6cbc4fce0c11a5200b9846c7a47ec874d9.tar.gz
5792
Fix a bug in one test: it checks eax when the component under test returns
nothing. It's been just accidentally passing all these months.
Diffstat (limited to '054string-equal.subx')
-rw-r--r--054string-equal.subx9
1 files changed, 0 insertions, 9 deletions
diff --git a/054string-equal.subx b/054string-equal.subx
index 70fa8901..484844d9 100644
--- a/054string-equal.subx
+++ b/054string-equal.subx
@@ -216,15 +216,6 @@ test-check-strings-equal:
     e8/call  check-strings-equal/disp32
     # . . discard args
     81          0/subop/add         3/mod/direct    4/rm32/esp    .           .             .           .           .               8/imm32           # add to esp
-    # check-ints-equal(eax, 1, msg)
-    # . . push args
-    68/push  "F - test-check-strings-equal"/imm32
-    68/push  0/imm32/false
-    50/push-eax
-    # . . call
-    e8/call  check-ints-equal/disp32
-    # . . discard args
-    81          0/subop/add         3/mod/direct    4/rm32/esp    .           .             .           .           .               0xc/imm32         # add to esp
     c3/return
 
 # . . vim:nowrap:textwidth=0