[compiler-rt] r305822 - [ASan] Disable allocator_oom_test.cc on s390

Alex Shlyapnikov via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 20 12:16:41 PDT 2017


Author: alekseyshl
Date: Tue Jun 20 14:16:41 2017
New Revision: 305822

URL: http://llvm.org/viewvc/llvm-project?rev=305822&view=rev
Log:
[ASan] Disable allocator_oom_test.cc on s390

Summary:
ASan shadow memory on s390 is larger than other configurations, let's
disable this test for now (will revisit it later).

Reviewers: eugenis

Subscribers: kubamracek, llvm-commits

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

Modified:
    compiler-rt/trunk/test/asan/TestCases/Linux/allocator_oom_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Linux/allocator_oom_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/allocator_oom_test.cc?rev=305822&r1=305821&r2=305822&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/allocator_oom_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/allocator_oom_test.cc Tue Jun 20 14:16:41 2017
@@ -28,6 +28,9 @@
 // RUN: %env_asan_opts=allocator_may_return_null=1     %run %t realloc-after-malloc 2>&1 \
 // RUN:   | FileCheck %s --check-prefixes=CHECK-MALLOC-REALLOC,CHECK-NULL
 
+// ASan shadow memory on s390 is too large for this test.
+// UNSUPPORTED: s390
+
 #include <stdlib.h>
 #include <string.h>
 #include <stdio.h>




More information about the llvm-commits mailing list