[compiler-rt] r290129 - Fixup for r290119: Only run debug_alloc_stack.cc on Darwin until I figure out how to make it work on Linux.

Kuba Mracek via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 19 10:54:34 PST 2016


Author: kuba.brecka
Date: Mon Dec 19 12:54:34 2016
New Revision: 290129

URL: http://llvm.org/viewvc/llvm-project?rev=290129&view=rev
Log:
Fixup for r290119: Only run debug_alloc_stack.cc on Darwin until I figure out how to make it work on Linux.


Modified:
    compiler-rt/trunk/test/tsan/debug_alloc_stack.cc

Modified: compiler-rt/trunk/test/tsan/debug_alloc_stack.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/debug_alloc_stack.cc?rev=290129&r1=290128&r2=290129&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/debug_alloc_stack.cc (original)
+++ compiler-rt/trunk/test/tsan/debug_alloc_stack.cc Mon Dec 19 12:54:34 2016
@@ -1,6 +1,9 @@
 // RUN: %clangxx_tsan -O0 %s -o %t
 // RUN: env %env_tsan_opts=stack_trace_format=DEFAULT %deflake %run %t 2>&1 | FileCheck %s
 
+// Until I figure out how to make this test work on Linux
+// REQUIRES: x86_64-darwin
+
 #include "test.h"
 #include <pthread.h>
 #include <stdint.h>




More information about the llvm-commits mailing list