Symbol: TESTSTR
tests/fs/vfs/t_io.c
45
#define TESTSZ sizeof(TESTSTR)
tests/fs/vfs/t_io.c
93
ATF_REQUIRE_EQ(rump_sys_write(fd, TESTSTR, TESTSZ), TESTSZ);
tests/fs/vfs/t_io.c
95
ATF_REQUIRE_STREQ(buf, TESTSTR);
tests/lib/libc/stdio/t_fmemopen.c
100
TESTSTR("The quick brown fox jumps\0over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
101
TESTSTR("The quick brown fox jumps \0ver the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
102
TESTSTR("The quick brown fox jumps o\0er the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
103
TESTSTR("The quick brown fox jumps ov\0r the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
104
TESTSTR("The quick brown fox jumps ove\0 the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
105
TESTSTR("The quick brown fox jumps over\0the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
106
TESTSTR("The quick brown fox jumps over \0he lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
107
TESTSTR("The quick brown fox jumps over t\0e lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
108
TESTSTR("The quick brown fox jumps over th\0 lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
109
TESTSTR("The quick brown fox jumps over the\0lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
110
TESTSTR("The quick brown fox jumps over the \0azy dog"),
tests/lib/libc/stdio/t_fmemopen.c
111
TESTSTR("The quick brown fox jumps over the l\0zy dog"),
tests/lib/libc/stdio/t_fmemopen.c
112
TESTSTR("The quick brown fox jumps over the la\0y dog"),
tests/lib/libc/stdio/t_fmemopen.c
113
TESTSTR("The quick brown fox jumps over the laz\0 dog"),
tests/lib/libc/stdio/t_fmemopen.c
114
TESTSTR("The quick brown fox jumps over the lazy\0dog"),
tests/lib/libc/stdio/t_fmemopen.c
115
TESTSTR("The quick brown fox jumps over the lazy \0og"),
tests/lib/libc/stdio/t_fmemopen.c
116
TESTSTR("The quick brown fox jumps over the lazy d\0g"),
tests/lib/libc/stdio/t_fmemopen.c
117
TESTSTR("The quick brown fox jumps over the lazy do\0"),
tests/lib/libc/stdio/t_fmemopen.c
118
TESTSTR("The quick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
75
TESTSTR("\0he quick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
76
TESTSTR("T\0e quick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
77
TESTSTR("Th\0 quick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
78
TESTSTR("The\0quick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
79
TESTSTR("The \0uick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
80
TESTSTR("The q\0ick brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
81
TESTSTR("The qu\0ck brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
82
TESTSTR("The qui\0k brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
83
TESTSTR("The quic\0 brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
84
TESTSTR("The quick\0brown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
85
TESTSTR("The quick \0rown fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
86
TESTSTR("The quick b\0own fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
87
TESTSTR("The quick br\0wn fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
88
TESTSTR("The quick bro\0n fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
89
TESTSTR("The quick brow\0 fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
90
TESTSTR("The quick brown\0fox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
91
TESTSTR("The quick brown \0ox jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
92
TESTSTR("The quick brown f\0x jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
93
TESTSTR("The quick brown fo\0 jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
94
TESTSTR("The quick brown fox\0jumps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
95
TESTSTR("The quick brown fox \0umps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
96
TESTSTR("The quick brown fox j\0mps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
97
TESTSTR("The quick brown fox ju\0ps over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
98
TESTSTR("The quick brown fox jum\0s over the lazy dog"),
tests/lib/libc/stdio/t_fmemopen.c
99
TESTSTR("The quick brown fox jump\0 over the lazy dog"),
tests/rump/rumpkern/h_client/h_forkcli.c
103
if (strcmp(TESTSTR, buf) != 0)
tests/rump/rumpkern/h_client/h_forkcli.c
107
if (rump_sys_write(pipetti[1], TESTSTR, TESTSLEN) != TESTSLEN)
tests/rump/rumpkern/h_client/h_forkcli.c
77
#define TESTSLEN (sizeof(TESTSTR)-1)
tests/rump/rumpkern/t_copy.c
70
char buf[sizeof(TESTSTR)+1];
tests/rump/rumpkern/t_copy.c
78
ATF_REQUIRE_EQ(thefun(TESTSTR, buf, sizeof(buf), &len), 0);
tests/rump/rumpkern/t_copy.c
79
ATF_REQUIRE_EQ(len, sizeof(TESTSTR));
tests/rump/rumpkern/t_copy.c
80
ATF_REQUIRE_STREQ(TESTSTR, buf);
tests/rump/rumpkern/t_copy.c
84
ATF_REQUIRE_EQ(thefun(TESTSTR, buf, sizeof(buf)-1, &len), 0);
tests/rump/rumpkern/t_copy.c
85
ATF_REQUIRE_EQ(len, sizeof(TESTSTR));
tests/rump/rumpkern/t_copy.c
86
ATF_REQUIRE_STREQ(TESTSTR, buf);
tests/rump/rumpkern/t_copy.c
90
ATF_REQUIRE_EQ(thefun(TESTSTR, buf, sizeof(buf)-2, NULL), ENAMETOOLONG);