diff options
author | Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com> | 2016-10-31 14:06:04 +0000 |
---|---|---|
committer | Senthil Kumar Selvaraj <saaadhu@gcc.gnu.org> | 2016-10-31 14:06:04 +0000 |
commit | dd57b05e9681798cb23d774660b98466a6b511d4 (patch) | |
tree | 25c504f59fb994250f3d1c51372940e154d28377 | |
parent | e8d8d3c8bfae148448cd3108db3cc15434137393 (diff) | |
download | gcc-dd57b05e9681798cb23d774660b98466a6b511d4.zip gcc-dd57b05e9681798cb23d774660b98466a6b511d4.tar.gz gcc-dd57b05e9681798cb23d774660b98466a6b511d4.tar.bz2 |
Skip gcc.dg/lto/pr60449_0.c for avr
The testcase requires gettimeofday to be available for the target. The avr
target doesn't have an implementation, so the test always fails with a
linker error.
gcc/testsuite
2016-10-31 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
* gcc.dg/lto/pr60449_0.c: Skip for avr.
From-SVN: r241701
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/lto/pr60449_0.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5e773fb..63b2a47 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-10-31 Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com> + + * gcc.dg/lto/pr60449_0.c: Skip for avr. + 2016-10-30 Le-Chun Wu <lcwu@google.com> Mark Wielaard <mjw@redhat.com> diff --git a/gcc/testsuite/gcc.dg/lto/pr60449_0.c b/gcc/testsuite/gcc.dg/lto/pr60449_0.c index a430830..5b878a6 100644 --- a/gcc/testsuite/gcc.dg/lto/pr60449_0.c +++ b/gcc/testsuite/gcc.dg/lto/pr60449_0.c @@ -1,4 +1,5 @@ /* { dg-lto-do link } */ +/* { dg-skip-if "Needs gettimeofday" { "avr-*-*" } } */ extern int printf (const char *__restrict __format, ...); typedef long int __time_t; |