Lines Matching defs:testbuf
714 testdetail parsetest(char *testbuf, testdetail oldtest) {
725 if (verbose) printf("Parsing line: %s\n", testbuf);
726 while (*testbuf && isspace(*testbuf)) testbuf++;
727 if (testbuf[0] == ';' || testbuf[0] == '#' || testbuf[0] == '!' ||
728 testbuf[0] == '>' || testbuf[0] == '\0') {
735 if (*testbuf == '+') {
741 testbuf++;
749 p = strtok(testbuf, " \t");
1505 char testbuf[512], linebuf[512];
1512 while (fgets(testbuf, sizeof(testbuf), fp)) {
1514 testbuf[strcspn(testbuf, "\r\n")] = '\0';
1515 strcpy(linebuf, testbuf);
1516 test = parsetest(testbuf, test);