[9/9] nvptx: Re-enable 'gcc.misc-tests/options.exp'
Commit Message
..., just conditionalize its profiling test (as done elsewhere).
gcc/testsuite/
* gcc.misc-tests/options.exp: Re-enable for nvptx.
---
gcc/testsuite/gcc.misc-tests/options.exp | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
--
2.35.1
-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955
@@ -21,12 +21,6 @@
load_lib gcc-defs.exp
-# disable for non-profile targets explitly, rather than
-# rely on check-effective target. We're explicitly trying to check
-# profiling works, and if it doesn't check-effective-target will
-# simply skip the tests, rather than have this test shout at us.
-if [ istarget "nvptx-*-*" ] { return 0 }
-
# These tests don't run runtest_file_p consistently if it
# doesn't return the same values, so disable parallelization
# of this *.exp file. The first parallel runtest to reach
@@ -73,7 +67,9 @@ proc check_for_all_options {language gcc_options compiler_pattern as_pattern ld_
pass $test
}
-check_for_all_options c {--coverage} {-fprofile-arcs -ftest-coverage} {} {-lgcov}
+if { [check_profiling_available "-fprofile-arcs"] } {
+ check_for_all_options c {--coverage} {-fprofile-arcs -ftest-coverage} {} {-lgcov}
+}
proc get_dump_flags {} {
set res [list]