X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=support%2Fregression%2Ftests%2Fbug-895992.c;h=77018e072f26d5497fc49fe07c8b477abdcb6806;hb=c9a595d5675b92e37f029548baa3674497df7806;hp=a0cb9d6b34b65c0c40646d2cb45fbe30a2d62c8b;hpb=0a72baf80db1e39860360d5ec42c1146c4fe68c5;p=fw%2Fsdcc diff --git a/support/regression/tests/bug-895992.c b/support/regression/tests/bug-895992.c index a0cb9d6b..77018e07 100644 --- a/support/regression/tests/bug-895992.c +++ b/support/regression/tests/bug-895992.c @@ -30,6 +30,11 @@ wait (void) static void testLR(void) { +/* + * excluded for pic16 due to bug: + * [ 1511794 ] pic16: regression test bug-895992.c fails + */ +#ifndef SDCC_pic16 unsigned char number; unsigned char start = 1; unsigned char i; @@ -51,4 +56,5 @@ testLR(void) while (number != 0); ASSERT(loops == p0); +#endif }