diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2006-08-17 02:26:59 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2006-08-17 02:26:59 +0000 |
commit | e98a430b854487d164b042b9a1ab0cb6dba0ca25 (patch) | |
tree | 1cf5b40c0f1f5dc0731e437aa7a639f249e2985f | |
parent | 74c8bcd136ed10963afd0a419b905bc53eddb671 (diff) | |
download | gcc-e98a430b854487d164b042b9a1ab0cb6dba0ca25.zip gcc-e98a430b854487d164b042b9a1ab0cb6dba0ca25.tar.gz gcc-e98a430b854487d164b042b9a1ab0cb6dba0ca25.tar.bz2 |
re PR testsuite/28602 (All gfortran.dg/gomp tests fail)
PR testsuite/28602
* gfortran.dg/gomp/gomp.exp: Return if check_effective_target_fopenmp
is false.
From-SVN: r116207
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/gomp/gomp.exp | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 28ab165..3da59b8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-08-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR testsuite/28602 + * gfortran.dg/gomp/gomp.exp: Return if check_effective_target_fopenmp + is false. + 2006-08-16 Andrew Pinski <pinskia@physics.uc.edu> PR C++/28302 diff --git a/gcc/testsuite/gfortran.dg/gomp/gomp.exp b/gcc/testsuite/gfortran.dg/gomp/gomp.exp index 0cafd92..99689a2 100644 --- a/gcc/testsuite/gfortran.dg/gomp/gomp.exp +++ b/gcc/testsuite/gfortran.dg/gomp/gomp.exp @@ -3,6 +3,10 @@ # Load support procs. load_lib gfortran-dg.exp +if ![check_effective_target_fopenmp] { + return +} + # Initialize `dg'. dg-init |