[binutils-gdb] gdb/testsuite: add linux target check in allow_hipcc_tests

Simon Marchi simark@sourceware.org
Fri Sep 15 20:19:39 GMT 2023


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=947e047fac434621264f7212bbaa97580490d4fd

commit 947e047fac434621264f7212bbaa97580490d4fd
Author: Simon Marchi <simon.marchi@efficios.com>
Date:   Thu Sep 14 11:09:46 2023 -0400

    gdb/testsuite: add linux target check in allow_hipcc_tests
    
    ROCm / HIP tests should only run on Linux for now, existing gdb.rocm
    tests miss such a check.  Add an "istarget linux" check in
    allow_hipcc_tests.
    
    Change-Id: I71f69e510a754f2fdadc32de53b923ebb9835ab5
    Approved-By: Lancelot Six <lancelot.six@amd.com>

Diff:
---
 gdb/testsuite/lib/rocm.exp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gdb/testsuite/lib/rocm.exp b/gdb/testsuite/lib/rocm.exp
index 98a3b308228..791f1b403bb 100644
--- a/gdb/testsuite/lib/rocm.exp
+++ b/gdb/testsuite/lib/rocm.exp
@@ -67,6 +67,10 @@ gdb_caching_proc allow_hipcc_tests {} {
 	return {0 "remote debugging"}
     }
 
+    if {![istarget "*-linux*"]} {
+	return {0 "target platform is not Linux"}
+    }
+
     # Ensure that GDB is built with amd-dbgapi support.
     set output [remote_exec host $::GDB "$::INTERNAL_GDBFLAGS --configuration"]
     if { [string first "--with-amd-dbgapi" $output] == -1 } {


More information about the Gdb-cvs mailing list