We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4552c6 commit 5631ca6Copy full SHA for 5631ca6
orc-rt/unittests/MathTest.cpp
@@ -15,7 +15,7 @@
15
16
using namespace orc_rt;
17
18
-TEST(STLExtrasTest, isPowerOf2) {
+TEST(MathTest, isPowerOf2) {
19
// Test [0..16]
20
EXPECT_FALSE(isPowerOf2(0x00));
21
EXPECT_TRUE(isPowerOf2(0x01));
@@ -57,7 +57,7 @@ TEST(STLExtrasTest, isPowerOf2) {
57
EXPECT_FALSE(isPowerOf2(-1));
58
}
59
60
-TEST(STLExtrasTest, nextPowerOf2) {
+TEST(MathTest, nextPowerOf2) {
61
EXPECT_EQ(nextPowerOf2(0x00), (1 << 0));
62
EXPECT_EQ(nextPowerOf2(0x01), (1 << 1));
63
EXPECT_EQ(nextPowerOf2(0x02), (1 << 2));
0 commit comments