OSDN Git Service

Rename unittests/ADT/ilistTest.cpp to ilistTestTemp.cpp (temporarily)
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 23 Aug 2016 15:56:50 +0000 (15:56 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 23 Aug 2016 15:56:50 +0000 (15:56 +0000)
I'll rename this to IListTest.cpp after a waiting period (tonight?
tomorrow?), with a full explanation in that commit.

First, I'm moving it aside because Git doesn't play well with case-only
filename changes on case-insensitive file systems (and I suspect the
same is true of SVN).  This two-stage change should help to avoid
spurious failures on bots that don't do clean checkouts.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279524 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/CMakeLists.txt
unittests/ADT/ilistTestTemp.cpp [moved from unittests/ADT/ilistTest.cpp with 97% similarity]

index 485c0e8..ed008a3 100644 (file)
@@ -17,7 +17,7 @@ set(ADTSources
   FoldingSet.cpp
   FunctionRefTest.cpp
   HashingTest.cpp
-  ilistTest.cpp
+  ilistTestTemp.cpp
   IListBaseTest.cpp
   IListNodeBaseTest.cpp
   IListSentinelTest.cpp
similarity index 97%
rename from unittests/ADT/ilistTest.cpp
rename to unittests/ADT/ilistTestTemp.cpp
index 9086d3e..54caa82 100644 (file)
@@ -1,4 +1,4 @@
-//===- unittests/ADT/ilistTest.cpp - ilist unit tests ---------------------===//
+//===- unittests/ADT/ilistTestTemp.cpp - ilist unit tests -----------------===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -7,6 +7,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+// FIXME: Rename this file to IListTest.cpp once incremental checkouts on bots
+// have found this file.
+
 #include "llvm/ADT/ilist.h"
 #include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/ilist_node.h"