[compiler-rt] r228651 - [ASan] Add missing RUN: prefix.
Alexey Samsonov
vonosmas at gmail.com
Mon Feb 9 17:55:02 PST 2015
Author: samsonov
Date: Mon Feb 9 19:55:02 2015
New Revision: 228651
URL: http://llvm.org/viewvc/llvm-project?rev=228651&view=rev
Log:
[ASan] Add missing RUN: prefix.
Modified:
compiler-rt/trunk/test/asan/TestCases/deep_call_stack.cc
Modified: compiler-rt/trunk/test/asan/TestCases/deep_call_stack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/deep_call_stack.cc?rev=228651&r1=228650&r2=228651&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/deep_call_stack.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/deep_call_stack.cc Mon Feb 9 19:55:02 2015
@@ -1,7 +1,8 @@
// Check that UAR mode can handle very deep recusrion.
-// export ASAN_OPTIONS=detect_stack_use_after_return=1
+// RUN: export ASAN_OPTIONS=detect_stack_use_after_return=1
// RUN: %clangxx_asan -O2 %s -o %t && \
// RUN: (ulimit -s 4096; %run %t) 2>&1 | FileCheck %s
+
// Also check that use_sigaltstack+verbosity doesn't crash.
// RUN: env ASAN_OPTIONS=verbosity=1:use_sigaltstack=1 %run %t | FileCheck %s
#include <stdio.h>
More information about the llvm-commits
mailing list