[testsuite] Fix dg-require-stack-check
authorChristophe Lyon <christophe.lyon@linaro.org>
Wed, 12 Jul 2017 07:53:28 +0000 (07:53 +0000)
committerChristophe Lyon <clyon@gcc.gnu.org>
Wed, 12 Jul 2017 07:53:28 +0000 (09:53 +0200)
2017-07-12  Christophe Lyon  <christophe.lyon@linaro.org>

* lib/target-supports.exp (check_stack_check_available): Make
testcase name depend on stack_kind.

From-SVN: r250149

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 78bcef9bd7a3cc8b7307c27a69397757f4065e2c..cf8c5adf8444af915b14c9756c7843aa844d7c9a 100644 (file)
@@ -1,3 +1,8 @@
+2017-07-12  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       * lib/target-supports.exp (check_stack_check_available): Make
+       testcase name depend on stack_kind.
+
 2017-07-11  Michael Collison  <michael.collison@arm.com>
 
        * testsuite/gcc.target/aarch64/cmp-2.c: New testcase.
index 7fb51ccb3e2d5ac2f5f807bbc05697d01a1a69de..97d834c63fc6f4eee7b09ea8b909945f08e00f0d 100644 (file)
@@ -1069,7 +1069,7 @@ proc check_stack_check_available { stack_kind } {
        set stack_opt "-fstack-check"
     } else { set stack_opt "-fstack-check=$stack_kind" }
 
-    return [check_no_compiler_messages stack_check executable {
+    return [check_no_compiler_messages stack_check_$stack_kind executable {
        int main (void) { return 0; }
     } "$stack_opt"]
 }