[compiler-rt] r276122 - [compiler-rt/asan] Disable irrelevant unittest on win64

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 20 07:53:17 PDT 2016


Author: etienneb
Date: Wed Jul 20 09:53:17 2016
New Revision: 276122

URL: http://llvm.org/viewvc/llvm-project?rev=276122&view=rev
Log:
[compiler-rt/asan] Disable irrelevant unittest on win64

Summary:
This test is allocating a 1gig chunk to make shadow allocation failed,
but on 64-bits architecture the test is working.

Reviewers: rnk

Subscribers: kubabrecka, llvm-commits, wang0109, chrisha

Differential Revision: https://reviews.llvm.org/D22553

Modified:
    compiler-rt/trunk/test/asan/TestCases/Windows/shadow_mapping_failure.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Windows/shadow_mapping_failure.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Windows/shadow_mapping_failure.cc?rev=276122&r1=276121&r2=276122&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Windows/shadow_mapping_failure.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Windows/shadow_mapping_failure.cc Wed Jul 20 09:53:17 2016
@@ -1,5 +1,6 @@
 // RUN: %clang_cl_asan -O0 %s -Fe%t
 // RUN: not %run %t 2>&1 | FileCheck %s
+// REQUIRES: asan-32-bits
 
 #include <stdio.h>
 




More information about the llvm-commits mailing list