2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-10 10:55:19 +00:00
Files
kea/compiler-checks/gtest.cc

13 lines
333 B
C++
Raw Normal View History

#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);
}
2025-04-24 14:30:16 +03:00
int main(int argc, char* argv[]) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}