* support/regression/generate-cases.py: implemented more flexible rule
[fw/sdcc] / support / regression / tests / bug-895992.c
index a0cb9d6b34b65c0c40646d2cb45fbe30a2d62c8b..77018e072f26d5497fc49fe07c8b477abdcb6806 100644 (file)
@@ -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
 }