diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-02-09 21:56:55 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-02-09 21:57:11 -0800 |
commit | f3f6bc3f0142dcf06874523e9ac280234d89b501 (patch) | |
tree | 0c1bbfc6f81f7432a50fdc00d5c9e299b1fd7840 | |
parent | dfa61e6299ef88aa9cb9a62fc114337a6a057f8a (diff) | |
download | mu-f3f6bc3f0142dcf06874523e9ac280234d89b501.tar.gz |
7706
-rw-r--r-- | baremetal/502test.mu | 24 | ||||
-rw-r--r-- | baremetal/shell/gap-buffer.mu | 15 |
2 files changed, 30 insertions, 9 deletions
diff --git a/baremetal/502test.mu b/baremetal/502test.mu index 3431bfa3..89d9b0e9 100644 --- a/baremetal/502test.mu +++ b/baremetal/502test.mu @@ -14,3 +14,27 @@ fn check-ints-equal _a: int, b: int, msg: (addr array byte) { fn test-check-ints-equal { check-ints-equal 0, 0, "abc" } + +fn check _a: boolean, msg: (addr array byte) { + var a/eax: int <- copy _a + compare a, 0/false + { + break-if-= + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg/cyan, 0/bg + return + } + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg + count-test-failure +} + +fn check-not _a: boolean, msg: (addr array byte) { + var a/eax: int <- copy _a + compare a, 0/false + { + break-if-!= + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, ".", 3/fg/cyan, 0/bg + return + } + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, msg, 3/fg/cyan, 0/bg + count-test-failure +} diff --git a/baremetal/shell/gap-buffer.mu b/baremetal/shell/gap-buffer.mu index 8cbfa887..0efd1358 100644 --- a/baremetal/shell/gap-buffer.mu +++ b/baremetal/shell/gap-buffer.mu @@ -283,9 +283,8 @@ fn test-gap-buffer-equal-from-end { add-grapheme-at-gap g, c add-grapheme-at-gap g, c # gap is at end (right is empty) - var _result/eax: boolean <- gap-buffer-equal? g, "aaa" - var result/eax: int <- copy _result - check-ints-equal result, 1, "F - test-gap-buffer-equal-from-end" + var result/eax: boolean <- gap-buffer-equal? g, "aaa" + check result, "F - test-gap-buffer-equal-from-end" } fn test-gap-buffer-equal-from-middle { @@ -299,9 +298,8 @@ fn test-gap-buffer-equal-from-middle { add-grapheme-at-gap g, c var dummy/eax: grapheme <- gap-left g # gap is in the middle - var _result/eax: boolean <- gap-buffer-equal? g, "aaa" - var result/eax: int <- copy _result - check-ints-equal result, 1, "F - test-gap-buffer-equal-from-middle" + var result/eax: boolean <- gap-buffer-equal? g, "aaa" + check result, "F - test-gap-buffer-equal-from-middle" } fn test-gap-buffer-equal-from-start { @@ -317,9 +315,8 @@ fn test-gap-buffer-equal-from-start { dummy <- gap-left g dummy <- gap-left g # gap is at the start - var _result/eax: boolean <- gap-buffer-equal? g, "aaa" - var result/eax: int <- copy _result - check-ints-equal result, 1, "F - test-gap-buffer-equal-from-start" + var result/eax: boolean <- gap-buffer-equal? g, "aaa" + check result, "F - test-gap-buffer-equal-from-start" } fn copy-gap-buffer _src-ah: (addr handle gap-buffer), _dest-ah: (addr handle gap-buffer) { |