mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
13 lines
300 B
C++
13 lines
300 B
C++
|
#include <gtest/gtest.h>
|
||
|
|
||
|
// musl's mallocng memory allocator stupidly crash for test names that are
|
||
|
// lengthier than 16 characters. Hence the long test name.
|
||
|
TEST(Fixture, testWithLongLongLongName) {
|
||
|
EXPECT_LT(1, 2);
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
testing::InitGoogleTest();
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|