HomeSort by: relevance | last modified time | path
    Searched defs:ASSERT_EQ (Results 1 - 7 of 7) sorted by relevancy

  /src/tests/kernel/
t_zombie.c 62 * wrapped with ASSERT_EQ()/ASSERT_NEQ() as that is guaranteed to work.
64 #define ASSERT_EQ(x, y) \
111 ASSERT_EQ(sysctl(name, namelen, &p, &len, NULL, 0), 0);
122 ASSERT_EQ(usleep(100), 0);
  /src/tests/lib/libc/sys/
t_fork.c 60 * wrapped with ASSERT_EQ()/ASSERT_NEQ() as that is guaranteed to work.
62 #define ASSERT_EQ(x, y) \
106 ASSERT_EQ(sysctl(name, namelen, 0, &len, NULL, 0), 0);
108 ASSERT_EQ(reallocarr(&p, len, sizeof(struct kinfo_proc2)), 0);
112 ASSERT_EQ(sysctl(name, namelen, p, &len, NULL, 0), 0);
128 ASSERT_EQ(usleep(1000), 0);
132 ASSERT_EQ(reallocarr(&p, 0, sizeof(struct kinfo_proc2)), 0);
174 ASSERT_EQ(rv, 0);
175 ASSERT_EQ(errno, 0);
196 ASSERT_EQ(rv, 0)
    [all...]
  /src/external/bsd/zstd/dist/tests/
poolTests.c 26 #define ASSERT_EQ(lhs, rhs) ASSERT_TRUE((lhs) == (rhs))
56 ASSERT_EQ(16, data.i);
59 ASSERT_EQ(i, data.data[i]);
132 ASSERT_EQ(test.val, 0);
133 ASSERT_EQ(test.max, 4);
136 ASSERT_EQ( POOL_resize(ctx, 2/*nbThreads*/) , 0 );
147 ASSERT_EQ(test.val, 0);
148 ASSERT_EQ(test.max, 2);
202 ASSERT_EQ( POOL_resize(ctx, 1 /*numThreads*/) , 0 ); /* downsize numThreads, to try to break end condition */
205 ASSERT_EQ(test.val, nbWaits)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
selftest.h 327 #define ASSERT_EQ(VAL1, VAL2) \
330 /* Like ASSERT_EQ, but treat LOC as the effective location of the
335 const char *desc_ = "ASSERT_EQ (" #VAL1 ", " #VAL2 ")"; \
  /src/external/gpl3/gcc.old/dist/gcc/
selftest.h 320 #define ASSERT_EQ(VAL1, VAL2) \
323 /* Like ASSERT_EQ, but treat LOC as the effective location of the
328 const char *desc_ = "ASSERT_EQ (" #VAL1 ", " #VAL2 ")"; \
  /src/external/mit/libuv/dist/test/
task.h 199 #define ASSERT_EQ(a, b) ASSERT_BASE(a, ==, b, int64_t, PRId64)
260 ASSERT_EQ(0, uv_loop_close(loop)); \
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest.h 2057 # define ASSERT_EQ(val1, val2) GTEST_ASSERT_EQ(val1, val2)

Completed in 32 milliseconds