diff options
author | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-11 15:42:00 +0000 |
---|---|---|
committer | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-11 15:42:00 +0000 |
commit | fcbb0ec06e3f8aa2f65a485fc7bde3c64d67017e (patch) | |
tree | a261f4553306a308cdc2ff17dd1dd480ba2abdf6 | |
parent | ce12c92f6695cb687880618692cb8c56063bc423 (diff) | |
download | llvm-fcbb0ec06e3f8aa2f65a485fc7bde3c64d67017e.zip llvm-fcbb0ec06e3f8aa2f65a485fc7bde3c64d67017e.tar.gz llvm-fcbb0ec06e3f8aa2f65a485fc7bde3c64d67017e.tar.bz2 |
[tsan] Rename tsan_test_util_linux.cc to tsan_test_util_posix.cc
Differential Revision: http://reviews.llvm.org/D14575
llvm-svn: 252741
-rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt | 2 | ||||
-rw-r--r-- | compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cc (renamed from compiler-rt/lib/tsan/tests/rtl/tsan_test_util_linux.cc) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt b/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt index 62faa0d..a34f08e 100644 --- a/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt +++ b/compiler-rt/lib/tsan/tests/rtl/CMakeLists.txt @@ -8,7 +8,7 @@ set(TSAN_RTL_TEST_SOURCES tsan_thread.cc) if(UNIX) - list(APPEND TSAN_RTL_TEST_SOURCES tsan_test_util_linux.cc) + list(APPEND TSAN_RTL_TEST_SOURCES tsan_test_util_posix.cc) endif() set(TSAN_RTL_TEST_HEADERS diff --git a/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_linux.cc b/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cc index 646c654..6f47c08 100644 --- a/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_linux.cc +++ b/compiler-rt/lib/tsan/tests/rtl/tsan_test_util_posix.cc @@ -1,4 +1,4 @@ -//===-- tsan_test_util_linux.cc -------------------------------------------===// +//===-- tsan_test_util_posix.cc -------------------------------------------===// // // The LLVM Compiler Infrastructure // |