mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-22 17:55:57 +01:00
./build and ./test work automatically when cwd is inside userland/libs/XXX without --package-all.
10 lines
134 B
C++
10 lines
134 B
C++
#include <gtest/gtest.h>
|
|
|
|
TEST(FailTest, ThisTestPasses) {
|
|
EXPECT_EQ(1, 1);
|
|
}
|
|
|
|
TEST(FailTest, ThisTestFails) {
|
|
EXPECT_EQ(1, 2);
|
|
}
|