2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-07 17:35:18 +00:00
Files
kea/compiler-checks/gtest.cc
2025-04-24 16:04:31 +03:00

13 lines
333 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(int argc, char* argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}