From 21bddb2e4bad5f67ef45022f194c902f2ea24c84 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 13 Jan 2021 21:50:38 -0800 Subject: 7519 - baremetal: run all tests on boot --- baremetal/502test.mu | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 baremetal/502test.mu (limited to 'baremetal/502test.mu') diff --git a/baremetal/502test.mu b/baremetal/502test.mu new file mode 100644 index 00000000..94063a70 --- /dev/null +++ b/baremetal/502test.mu @@ -0,0 +1,18 @@ +# print msg to screen if a != b, otherwise print "." +fn check-ints-equal _a: int, b: int, msg: (addr array byte) { + var a/eax: int <- copy _a + compare a, b + { + break-if-= + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0, msg, 3 # 3=cyan + count-test-failure + } + { + break-if-!= + draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0, ".", 3 # 3=cyan + } +} + +fn test-check-ints-equal { + check-ints-equal 0, 0, "abc" +} -- cgit 1.4.1-2-gfad0