1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Rename unittests/ADT/ilistTest.cpp to ilistTestTemp.cpp (temporarily)

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.

llvm-svn: 279524
This commit is contained in:
Duncan P. N. Exon Smith 2016-08-23 15:56:50 +00:00
parent df1f2a779a
commit 4e1990f5f1
2 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,7 @@ set(ADTSources
FoldingSet.cpp
FunctionRefTest.cpp
HashingTest.cpp
ilistTest.cpp
ilistTestTemp.cpp
IListBaseTest.cpp
IListNodeBaseTest.cpp
IListSentinelTest.cpp

View 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"