summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-04-29 17:07:45 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-04-29 17:07:45 +0000
commitf38f17c463cae4ffae73336fa5b738241fd55d3a (patch)
tree4a8b2d0d6ea412278d0f825f80956112fd84c838 /unittests
parent67f5fcac4b64d598acf94103b6fadcfd8d7538af (diff)
downloadllvm-f38f17c463cae4ffae73336fa5b738241fd55d3a.tar.gz
llvm-f38f17c463cae4ffae73336fa5b738241fd55d3a.tar.bz2
llvm-f38f17c463cae4ffae73336fa5b738241fd55d3a.tar.xz
SupportTest: Fix test names harder
r207552, r207553 and r207554 all had bad test names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207560 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/Support/BranchProbabilityTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Support/BranchProbabilityTest.cpp b/unittests/Support/BranchProbabilityTest.cpp
index 09061de332..bbd4d4eba1 100644
--- a/unittests/Support/BranchProbabilityTest.cpp
+++ b/unittests/Support/BranchProbabilityTest.cpp
@@ -80,7 +80,7 @@ TEST(BranchProbabilityTest, Operators) {
EXPECT_TRUE(BP(4, 7) != BP(3, 7));
}
-TEST(BlockProbabilityTest, MoreOperators) {
+TEST(BranchProbabilityTest, MoreOperators) {
BP A(4, 5);
BP B(4U << 29, 5U << 29);
BP C(3, 4);
@@ -184,7 +184,7 @@ TEST(BranchProbabilityTest, scaleByInverse) {
BP(Two31 + 1, UINT32_MAX).scaleByInverse(Two63 + Two31));
}
-TEST(BlockProbabilityTest, scaleBruteForce) {
+TEST(BranchProbabilityTest, scaleBruteForce) {
struct {
uint64_t Num;
uint32_t Prob[2];