Searched defs:expect (Results 1 - 7 of 7) sorted by relevance

/bind-9.11.3/lib/isc/tests/
H A Derrno_test.c85 isc_result_t result, expect; local
90 expect = testpair[i].result;
91 ATF_CHECK(result == expect);
H A Dnetaddr_test.c29 isc_boolean_t expect; member in struct:__anon279
49 ATF_CHECK_EQ_MSG(result, tests[i].expect,
H A Dregex_test.c36 int expect; member in struct:__anon280
1081 if (((r != 0 && tests[i].expect != -1) ||
1082 (r == 0 && tests[i].expect == -1)) && !tests[i].exception)
1085 tests[i].expect == -1 ? "bad" : "good");
1087 preg.re_nsub != (unsigned int)tests[i].expect &&
1091 (unsigned long)preg.re_nsub, tests[i].expect);
1092 tests[i].expect = preg.re_nsub;
1104 if (r != tests[i].expect)
1106 tests[i].expression, r, tests[i].expect);
1107 ATF_CHECK_EQ(r, tests[i].expect);
[all...]
H A Dsockaddr_test.c75 isc_boolean_t expect; member in struct:__anon281
92 isc_boolean_t expect; member in struct:__anon282
108 ATF_CHECK_EQ_MSG(r, data4[i].expect, "%s", data4[i].string);
116 ATF_CHECK_EQ_MSG(r, data6[i].expect, "%s", data6[i].string);
/bind-9.11.3/unit/atf-src/tools/
H A Dparser.hpp338 expect(const token_type&,
342 expect(const token_type&,
347 expect(const token_type&,
353 expect(const token_type&,
360 expect(const token_type&,
370 expect(const token_type&,
457 parser< TKZ >::expect(const token_type& t1, function in class:tools::parser::parser
472 parser< TKZ >::expect(const token_type& t1, function in class:tools::parser::parser
488 parser< TKZ >::expect(const token_type& t1, function in class:tools::parser::parser
505 parser< TKZ >::expect(cons function in class:tools::parser::parser
524 parser< TKZ >::expect(const token_type& t1, function in class:tools::parser::parser
547 parser< TKZ >::expect(const token_type& t1, function in class:tools::parser::parser
[all...]
/bind-9.11.3/lib/isc/
H A Dlex.c873 isc_tokentype_t expect, isc_boolean_t eol)
879 if (expect == isc_tokentype_qstring)
881 else if (expect == isc_tokentype_number)
893 expect == isc_tokentype_qstring)
895 if (token->type != expect) {
900 if (expect == isc_tokentype_number)
872 isc_lex_getmastertoken(isc_lex_t *lex, isc_token_t *token, isc_tokentype_t expect, isc_boolean_t eol) argument
/bind-9.11.3/unit/atf-src/atf-c/
H A Dtc.c67 enum expect_type expect; member in struct:context
111 ctx->expect = EXPECT_PASS;
243 ctx->expect = EXPECT_PASS; /* Ensure fail_requirement really fails. */
247 /** Ensures that the "expect" state is correct.
249 * Call this function before modifying the current value of expect.
254 if (ctx->expect == EXPECT_DEATH) {
257 } else if (ctx->expect == EXPECT_EXIT) {
260 } else if (ctx->expect == EXPECT_FAIL) {
266 } else if (ctx->expect == EXPECT_PASS) {
268 } else if (ctx->expect
[all...]

Completed in 24 milliseconds