aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2020-08-20 08:51:01 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2020-08-20 08:56:57 +0000
commit3f678b4c20bb4e3adef7498aacc5519dfe78a894 (patch)
tree4e0100766625f4859fa4073ec9aee0df7fb2390d
parentc2a0fd7c8ff426cc40ec678efef85e4a376ea4b5 (diff)
downloadgcc-3f678b4c20bb4e3adef7498aacc5519dfe78a894.zip
gcc-3f678b4c20bb4e3adef7498aacc5519dfe78a894.tar.gz
gcc-3f678b4c20bb4e3adef7498aacc5519dfe78a894.tar.bz2
testsuite: Skip arm/pure-code tests for arm*-*-uclinuxfdpiceabi
FDPIC it uses PIC code, which is incompatible with -mpure-code, so we want to skip these tests for arm*-*-uclinuxfdpiceabi. This patch also fixes a typo where the final closing bracket was commented out. 2020-08-20 Christophe Lyon <christophe.lyon@linaro.org> gcc/testsuite/ * gcc.target/arm/pure-code/pure-code.exp: Skip for arm*-*-uclinuxfdpiceabi. Fix missing closing bracket.
-rw-r--r--gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp8
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp b/gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
index fabebe1a..cf3664a 100644
--- a/gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
+++ b/gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
@@ -16,6 +16,12 @@
# GCC testsuite for ARM's -mpure-code option, using the `dg.exp' driver.
+# Exit immediately if this is an ARM FDPIC target (it uses PIC code,
+# which is incompatible with -mpure-code).
+if [istarget arm*-*-uclinuxfdpiceabi] then {
+ return
+}
+
# Load support procs.
load_lib gcc-dg.exp
@@ -53,4 +59,4 @@ set LTO_TORTURE_OPTIONS ${saved-lto_torture_options}
# All done.
dg-finish
-#}
+}