diff options
author | Richard Sandiford <richard@codesourcery.com> | 2007-07-04 09:15:53 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2007-07-04 09:15:53 +0000 |
commit | 2c99d614360c57cf409aa78136fe50851d0e7a9a (patch) | |
tree | 43b6c8a64a59036f704497b00df23fb33d0a789e /gcc | |
parent | 0160a2c7006d7c456e87acb37132f601a4632109 (diff) | |
download | gcc-2c99d614360c57cf409aa78136fe50851d0e7a9a.zip gcc-2c99d614360c57cf409aa78136fe50851d0e7a9a.tar.gz gcc-2c99d614360c57cf409aa78136fe50851d0e7a9a.tar.bz2 |
sh4a-fprun.c: Skip for VxWorks kernels.
gcc/testsuite/
* gcc.dg/sh4a-fprun.c: Skip for VxWorks kernels.
From-SVN: r126308
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/sh4a-fprun.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 71c389a..0e355f3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-07-04 Richard Sandiford <richard@codesourcery.com> + + * gcc.dg/sh4a-fprun.c: Skip for VxWorks kernels. + 2007-07-04 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR fortran/31198 diff --git a/gcc/testsuite/gcc.dg/sh4a-fprun.c b/gcc/testsuite/gcc.dg/sh4a-fprun.c index e9b1107..40c2b05 100644 --- a/gcc/testsuite/gcc.dg/sh4a-fprun.c +++ b/gcc/testsuite/gcc.dg/sh4a-fprun.c @@ -1,5 +1,7 @@ /* Verify that fsca and fssra yield reasonable results. */ -/* { dg-do run { target "sh*-*-*" } } */ +/* This test calls the sinf and cosf library functions for targets other + than sh4a, but the VxWorks kernel doesn't have those functions. */ +/* { dg-do run { target { "sh*-*-*" && { ! vxworks_kernel } } } } */ /* { dg-options "-O -ffast-math" } */ #include <math.h> |