[compiler-rt] r334866 - [asan] Move long-object-path.cc test to Linux
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 15 14:25:43 PDT 2018
Author: vitalybuka
Date: Fri Jun 15 14:25:42 2018
New Revision: 334866
URL: http://llvm.org/viewvc/llvm-project?rev=334866&view=rev
Log:
[asan] Move long-object-path.cc test to Linux
Reviewers: Lekensteyn
Reviewed By: Lekensteyn
Subscribers: srhines, kubamracek, llvm-commits
Differential Revision: https://reviews.llvm.org/D48186
Added:
compiler-rt/trunk/test/asan/TestCases/Linux/long-object-path.cc
Removed:
compiler-rt/trunk/test/asan/TestCases/long-object-path.cc
Added: compiler-rt/trunk/test/asan/TestCases/Linux/long-object-path.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Linux/long-object-path.cc?rev=334866&view=auto
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Linux/long-object-path.cc (added)
+++ compiler-rt/trunk/test/asan/TestCases/Linux/long-object-path.cc Fri Jun 15 14:25:42 2018
@@ -0,0 +1,7 @@
+// RUN: mkdir -p %T/a-long-directory-name-to-test-allocations-for-exceptions-in-_dl_lookup_symbol_x-since-glibc-2.27
+// RUN: %clangxx_asan -g %s -o %T/long-object-path
+// RUN: %run %T/a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../long-object-path
+
+int main(void) {
+ return 0;
+}
Removed: compiler-rt/trunk/test/asan/TestCases/long-object-path.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/long-object-path.cc?rev=334865&view=auto
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/long-object-path.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/long-object-path.cc (removed)
@@ -1,8 +0,0 @@
-// RUN: mkdir -p %T/a-long-directory-name-to-test-allocations-for-exceptions-in-_dl_lookup_symbol_x-since-glibc-2.27
-// RUN: %clangxx_asan -g %s -o %T/long-object-path
-// RUN: %run %T/a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../a-*/../long-object-path
-// UNSUPPORTED: win32
-
-int main(void) {
- return 0;
-}
More information about the llvm-commits
mailing list