Lines Matching refs:thepath
32 char thepath[4096]; /* Yes, this limits the environment this test in do_test() local
40 if (getcwd (thepath, sizeof thepath) == NULL) in do_test()
49 len = strlen (thepath); in do_test()
88 if (strcmp (thepath, bufs[4]) != 0) in do_test()
92 bufs[4], thepath); in do_test()
132 memset (thepath, '\xfe', sizeof (thepath)); in do_test()
133 if (getcwd (thepath, len) != NULL) in do_test()
139 for (i = len; i < sizeof thepath; ++i) in do_test()
140 if (thepath[i] != '\xfe') in do_test()
160 memset (thepath, '\xff', sizeof thepath); in do_test()
161 if (getcwd (thepath, len + 1) == NULL) in do_test()
167 for (i = len + 1; i < sizeof thepath; ++i) in do_test()
168 if (thepath[i] != '\xff') in do_test()