From f3f6bc3f0142dcf06874523e9ac280234d89b501 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 9 Feb 2021 21:56:55 -0800 Subject: 7706 --- baremetal/502test.mu | 24 ++++++++++++++++++++++++ baremetal/shell/gap-buffer.mu | 15 ++++++--------- 2 files changed, 30 insertions(+), 9 deletions(-) (limited to 'baremetal') 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) { -- cgit 1.4.1-2-gfad0