From 196d50c1d7f24fa7b24985e64de7bb7f9b8098b8 Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 13 Jul 2026 12:06:21 -0400 Subject: [PATCH] Add `XXX:` comment tag to working but fragile test cases --- test/asm/jr-@.asm | 2 +- test/asm/pc.asm | 2 +- test/link/db-@.asm | 2 +- test/link/patch-diagnostics.asm | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/asm/jr-@.asm b/test/asm/jr-@.asm index c6c70b62..0f6278bc 100644 --- a/test/asm/jr-@.asm +++ b/test/asm/jr-@.asm @@ -6,5 +6,5 @@ SECTION "fixed", ROM0[0] SECTION "floating", ROM0 jr @ -; We rely on this landing at address $0002, which isn't *guaranteed*... +; XXX: We rely on this landing at address $0002, which isn't *guaranteed*... assert STARTOF("floating") == 2 diff --git a/test/asm/pc.asm b/test/asm/pc.asm index dbacbca0..257960c2 100644 --- a/test/asm/pc.asm +++ b/test/asm/pc.asm @@ -8,5 +8,5 @@ SECTION "floating", ROM0 ds 42 db @ -; We rely on this landing at address $0000, which isn't *guaranteed*... +; XXX: We rely on this landing at address $0000, which isn't *guaranteed*... assert STARTOF("floating") == 0 diff --git a/test/link/db-@.asm b/test/link/db-@.asm index aaf6daad..f32134ed 100644 --- a/test/link/db-@.asm +++ b/test/link/db-@.asm @@ -6,5 +6,5 @@ SECTION "fixed", ROM0[0] SECTION "floating", ROM0 db @, @, @ -; We rely on this landing at address $0003, which isn't *guaranteed*... +; XXX: We rely on this landing at address $0003, which isn't *guaranteed*... assert STARTOF("floating") == 3 diff --git a/test/link/patch-diagnostics.asm b/test/link/patch-diagnostics.asm index 6f400703..a7f33883 100644 --- a/test/link/patch-diagnostics.asm +++ b/test/link/patch-diagnostics.asm @@ -11,5 +11,5 @@ ld a, 1 >> ({fzero} + 32) ld a, 1 >>> ({fzero} - 1) ld a, 1 >>> ({fzero} + 32) -; We rely on this landing at address $0000, which isn't *guaranteed*... +; XXX: We rely on this landing at address $0000, which isn't *guaranteed*... assert startof("test") == 0