[compiler-rt] r335935 - [asan] un-XFAIL one test
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 28 15:54:30 PDT 2018
Author: eugenis
Date: Thu Jun 28 15:54:30 2018
New Revision: 335935
URL: http://llvm.org/viewvc/llvm-project?rev=335935&view=rev
Log:
[asan] un-XFAIL one test
NDK r16 provides glob.h, which makes this test pass.
Supporting different test outcomes depending on the version of NDK
add unnecessary complexity to the test harness. IMHO, it's OK to require
the latest stable release.
Modified:
compiler-rt/trunk/test/asan/TestCases/Linux/syscalls.cc
Modified: compiler-rt/trunk/test/asan/TestCases/Linux/syscalls.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/syscalls.cc?rev=335935&r1=335934&r2=335935&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/syscalls.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/syscalls.cc Thu Jun 28 15:54:30 2018
@@ -1,6 +1,3 @@
-// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316
-// XFAIL: android
-//
// RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
// RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
More information about the llvm-commits
mailing list