From df77c7f551357424c7ef05f90fde805117876648 Mon Sep 17 00:00:00 2001 From: bernhardheld Date: Sun, 1 Jun 2003 10:05:03 +0000 Subject: [PATCH] exclude z80 and gbz80 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2661 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/regression/tests/zeropad.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/regression/tests/zeropad.c b/support/regression/tests/zeropad.c index d8cab98a..78851044 100644 --- a/support/regression/tests/zeropad.c +++ b/support/regression/tests/zeropad.c @@ -24,7 +24,9 @@ struct x {storage} teststruct[6] = { void testZeropad(void) { +#if ! (defined(SDCC_z80) || defined(SDCC_gbz80)) ASSERT(teststruct[0].b[1] == 2); +#endif ASSERT(teststruct[0].b[5] == 0); ASSERT(teststruct[1].b[0] == 11); -- 2.39.5