Home
last modified time | relevance | path

Searched refs:EXPECT_LE (Results 1 – 12 of 12) sorted by relevance

/freebsd/tests/sys/fs/fusefs/
H A Dbmap.cc111 EXPECT_LE(arg.runb, lbn); in TEST_F()
112 EXPECT_LE((unsigned long)arg.runb, m_maxreadahead / m_maxbcachebuf); in TEST_F()
113 EXPECT_LE((unsigned long)arg.runb, m_maxphys / m_maxbcachebuf); in TEST_F()
115 EXPECT_LE(arg.runp, filesize / m_maxbcachebuf - lbn); in TEST_F()
116 EXPECT_LE((unsigned long)arg.runp, m_maxreadahead / m_maxbcachebuf); in TEST_F()
117 EXPECT_LE((unsigned long)arg.runp, m_maxphys / m_maxbcachebuf); in TEST_F()
H A Dio.cc227 EXPECT_LE(0, m_test_fd) << strerror(errno); in SetUp()
/freebsd/contrib/googletest/googletest/samples/
H A Dsample10_unittest.cc86 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!"; in OnTestEnd()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dexecutor_address_test.cpp40 EXPECT_LE(A1, A1); in TEST()
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-message-test.cc181 EXPECT_LE(sizeof(Message), 16U); in TEST()
H A Dgtest_unittest.cc305 EXPECT_LE(1, seed); in TEST()
306 EXPECT_LE(seed, static_cast<int>(kMaxRandomSeed)); in TEST()
319 EXPECT_LE(1, seed1); in TEST()
320 EXPECT_LE(seed1, static_cast<int>(kMaxRandomSeed)); in TEST()
323 EXPECT_LE(1, seed2); in TEST()
324 EXPECT_LE(seed2, static_cast<int>(kMaxRandomSeed)); in TEST()
1077 EXPECT_LE(sizeof(testing::internal::AssertHelper), sizeof(void*)); in TEST()
2004 EXPECT_LE(UnitTest::GetInstance()->start_timestamp(), GetTimeInMillis()); in TEST()
3973 EXPECT_LE(kCaseA, kCaseB); in TEST()
4284 EXPECT_LE(1, 2) << "This should succeed."; in TEST()
[all …]
/freebsd/contrib/capsicum-test/
H A Dcapsicum-test.h138 #define EXPECT_OK(v) EXPECT_LE(0, v) << " errno " << errno << " " << strerror(errno)
H A Dprocdesc.cc1041 EXPECT_LE(CMSG_LEN(sizeof(int)), mh.msg_controllen); in TEST_F()
H A Dcapability-fd.cc1029 EXPECT_LE(CMSG_LEN(sizeof(int)), mh.msg_controllen);
H A Dlinux.cc689 EXPECT_LE(CMSG_LEN(sizeof(int)), mh.msg_controllen); in ReceiveFD()
/freebsd/contrib/googletest/docs/reference/
H A Dassertions.md199 ### EXPECT_LE {#EXPECT_LE}
201 `EXPECT_LE(`*`val1`*`,`*`val2`*`)` \
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest.h1888 #define EXPECT_LE(val1, val2) \ macro