mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-07 17:35:18 +00:00
13 lines
333 B
C++
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();
|
|
}
|