Lines Matching refs:expect
68 long int expect = LONG_MAX; in mkbuf() local
90 expect = neg ? -tm_gmtoff : tm_gmtoff; in mkbuf()
93 return expect; in mkbuf()
114 compare (const char *buf, long int expect, unsigned int *nresult) in compare() argument
126 fail = test_result != expect; in compare()
130 bool expect_string_valid = expect != LONG_MAX; in compare()
133 describe (expect_string_valid, expect); in compare()
155 long int expect; in do_test() local
171 expect = LONG_MAX; in do_test()
172 result |= compare (buf, expect, nresult); in do_test()
178 expect = 0; in do_test()
179 result |= compare (buf, expect, nresult); in do_test()
195 expect = mkbuf (buf, false, false, hhmm, ndigits); in do_test()
196 result |= compare (buf, expect, nresult); in do_test()
198 expect = mkbuf (buf, true, false, hhmm, ndigits); in do_test()
199 result |= compare (buf, expect, nresult); in do_test()
205 expect = mkbuf (buf, false, true, hhmm, ndigits); in do_test()
206 result |= compare (buf, expect, nresult); in do_test()
208 expect = mkbuf (buf, true, true, hhmm, ndigits); in do_test()
209 result |= compare (buf, expect, nresult); in do_test()