The newly added gcc.dg/torture/pr60183.c test fails for the AVR target with an "array size too large" error. This patch marks the test as unsupported for AVR, following the example of other such tests in the testsuite.
If ok, could someone apply please? I don't have commit access. Regards Senthil gcc/testsuite/ChangeLog 2014-02-17 Senthil Kumar Selvaraj <senthil_kumar.selva...@atmel.com> * gcc.dg/torture/pr60183.c: Skip for avr target. diff --git gcc/testsuite/gcc.dg/torture/pr60183.c gcc/testsuite/gcc.dg/torture/pr60183.c index d37b4b8..8e519dc 100644 --- gcc/testsuite/gcc.dg/torture/pr60183.c +++ gcc/testsuite/gcc.dg/torture/pr60183.c @@ -1,4 +1,5 @@ /* { dg-do run } */ +/* { dg-skip-if "Size of array too big" { "avr-*-*" } { "*" } { "" } } */ /* Large so an out-of-bound read will crash. */ unsigned char c[0x30001] = { 1 };