diff options
author | Tom de Vries <tom@codesourcery.com> | 2015-06-30 15:43:55 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2015-06-30 15:43:55 +0000 |
commit | b451c27117636e7ca6f09fc4ac86a3623decf8fa (patch) | |
tree | ee178fb60ff4d761d470a120c653b7e7eae3cd37 /libgomp/testsuite/libgomp.oacc-c++ | |
parent | 47297e51f5c84a72bbe4c1bf2542d1c859222d84 (diff) | |
download | gcc-b451c27117636e7ca6f09fc4ac86a3623decf8fa.zip gcc-b451c27117636e7ca6f09fc4ac86a3623decf8fa.tar.gz gcc-b451c27117636e7ca6f09fc4ac86a3623decf8fa.tar.bz2 |
Run testsuite/libgomp.oacc-c++/c++.exp at -O2 by default
2015-06-30 Tom de Vries <tom@codesourcery.com>
* testsuite/libgomp.oacc-c++/c++.exp: Set DEFAULT_CFLAGS to -O2 if not
already set. Use DEFAULT_CFLAGS in dg-runtest.
* testsuite/libgomp.oacc-c-c++-common/collapse-3.c: Remove dg-options
"-O2".
From-SVN: r225194
Diffstat (limited to 'libgomp/testsuite/libgomp.oacc-c++')
-rw-r--r-- | libgomp/testsuite/libgomp.oacc-c++/c++.exp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libgomp/testsuite/libgomp.oacc-c++/c++.exp b/libgomp/testsuite/libgomp.oacc-c++/c++.exp index f486f9b..80d1359 100644 --- a/libgomp/testsuite/libgomp.oacc-c++/c++.exp +++ b/libgomp/testsuite/libgomp.oacc-c++/c++.exp @@ -13,6 +13,11 @@ if [info exists lang_include_flags] then { unset lang_include_flags } +# If a testcase doesn't have special options, use these. +if ![info exists DEFAULT_CFLAGS] then { + set DEFAULT_CFLAGS "-O2" +} + # Initialize dg. dg-init @@ -96,7 +101,7 @@ if { $lang_test_file_found } { setenv ACC_DEVICE_TYPE $offload_target_openacc - dg-runtest $tests "$tagopt" $libstdcxx_includes + dg-runtest $tests "$tagopt" "$libstdcxx_includes $DEFAULT_CFLAGS" } } |