Home
last modified time | relevance | path

Searched refs:TEST_E (Results 1 – 4 of 4) sorted by relevance

/third_party/musl/libc-test/src/functional/
Dmemstream.c12 #define TEST_E(f) ( (errno = 0), (f) || \ macro
32 TEST_E(f = open_memstream(&s, &l)); in main()
33 TEST_E(putc('a', f) == 'a'); in main()
34 TEST_E(putc('b', f) == 'b'); in main()
35 TEST_E(putc('c', f) == 'c'); in main()
36 TEST_E(!fflush(f)); in main()
42 TEST_E(f = open_memstream(&s, &l)); in main()
43 TEST_E(fseek(f,1,SEEK_CUR)>=0); in main()
44 TEST_E(putc('q', f) == 'q'); in main()
45 TEST_E(!fflush(f)); in main()
[all …]
Dpopen.c11 #define TEST_E(f) ( \ macro
32 TEST_E(f = popen("echo hello", "r")); in main()
34 TEST_E(fgets(foo, sizeof foo, f)); in main()
41 TEST_E(f = popen(cmd, "w")); in main()
43 TEST_E(fputs("hello", f) >= 0); in main()
Dspawn.c17 #define TEST_E(f) (void)( \ macro
30 TEST_E(!pipe(p)); in main()
/third_party/curl/tests/
DMakefile.am70 TEST_E = -a -e macro
99 $(TEST) $(TEST_E) $(TFLAGS)