projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9791e1a
)
Move unit test into anonymous namespace as per convention.
author
Douglas Katzman
<dougk@google.com>
Fri, 1 May 2015 18:51:06 +0000
(18:51 +0000)
committer
Douglas Katzman
<dougk@google.com>
Fri, 1 May 2015 18:51:06 +0000
(18:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236332
91177308
-0d34-0410-b5e6-
96231b3b80d8
unittests/ADT/TripleTest.cpp
patch
|
blob
|
history
diff --git
a/unittests/ADT/TripleTest.cpp
b/unittests/ADT/TripleTest.cpp
index d7dc4b166f2274ce5e2fc1903c922b8b2cbb267d..75d62e6fccea0922a6d43a43c815e3194f3b5ace 100644
(file)
--- a/
unittests/ADT/TripleTest.cpp
+++ b/
unittests/ADT/TripleTest.cpp
@@
-694,7
+694,6
@@
TEST(TripleTest, getARMCPUForArch) {
EXPECT_STREQ("cortex-a8", Triple.getARMCPUForArch("arm"));
}
}
-}
TEST(TripleTest, NormalizeARM) {
EXPECT_EQ("armv6--netbsd-eabi", Triple::normalize("armv6-netbsd-eabi"));
@@
-712,3
+711,5
@@
TEST(TripleTest, NormalizeARM) {
T = Triple("armv6eb--netbsd-eabi");
EXPECT_EQ(Triple::armeb, T.getArch());
}
+
+} // end anonymous namespace