[compiler-rt] r298267 - Disable stack-use-after-return.cc on AArch64. The test was not testing the right thing before (the call to pthread_attr_setstacksize wasn't doing anything) anyway, and now it's running out of stack due to an unrelated change.
Kuba Mracek via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 20 09:36:34 PDT 2017
Author: kuba.brecka
Date: Mon Mar 20 11:36:34 2017
New Revision: 298267
URL: http://llvm.org/viewvc/llvm-project?rev=298267&view=rev
Log:
Disable stack-use-after-return.cc on AArch64. The test was not testing the right thing before (the call to pthread_attr_setstacksize wasn't doing anything) anyway, and now it's running out of stack due to an unrelated change.
Modified:
compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc?rev=298267&r1=298266&r2=298267&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc Mon Mar 20 11:36:34 2017
@@ -14,6 +14,9 @@
// RUN: %env_asan_opts=detect_stack_use_after_return=1:max_uar_stack_size_log=20:verbosity=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-20 %s
// RUN: %env_asan_opts=detect_stack_use_after_return=1:min_uar_stack_size_log=24:max_uar_stack_size_log=24:verbosity=1 not %run %t 2>&1 | FileCheck --check-prefix=CHECK-24 %s
+// This test runs out of stack on AArch64.
+// UNSUPPORTED: aarch64
+
#include <limits.h>
#include <pthread.h>
#include <stdio.h>
More information about the llvm-commits
mailing list