rs6000/test: Make ppc-fortran.exp only available for PowerPC target
authorKewen Lin <linkw@linux.ibm.com>
Wed, 11 Jan 2023 12:59:24 +0000 (06:59 -0600)
committerKewen Lin <linkw@linux.ibm.com>
Wed, 11 Jan 2023 12:59:24 +0000 (06:59 -0600)
When testing one patch which adds a fortran test case into
test bucket powerpc/ppc-fortran/, I found one unexpected
failure on a non-PowerPC target.  It's due to that
ppc-fortran.exp does not exit early if the testing target
isn't a PowerPC target.  This patch is to make it exit
immediately if the testing target isn't a PowerPC target.

gcc/testsuite/ChangeLog:

* gcc.target/powerpc/ppc-fortran/ppc-fortran.exp: Exit immediately if
the testing target isn't a PowerPC target.

gcc/testsuite/gcc.target/powerpc/ppc-fortran/ppc-fortran.exp

index bd7ad95..ded643b 100644 (file)
 
 # GCC testsuite that uses the `dg.exp' driver.
 
+# Exit immediately if this isn't a PowerPC target.
+if { ![istarget powerpc*-*-*] && ![istarget rs6000-*-*] } then {
+  return
+}
+
 # Load support procs.
 load_lib gfortran-dg.exp