Home | History | Annotate | Download | only in pan

Lines Matching defs:zoo

37  * A Zoo is a file used to record what test tags are running at the moment.
38 * If the system crashes, we should be able to look at the zoo file to find out
42 * The zoo file is meant to be a text file that fits on a standard console.
45 * zoo file format:
65 /* zoo_mark(): private function to make an entry to the zoo
73 /* zoo_getname(): create a filename to use for the zoo */
77 char *zoo;
79 zoo = getenv("ZOO");
80 if (zoo) {
81 snprintf(buf, 1024, "%s/%s", zoo, "active");
89 /* zoo_open(): open a zoo for use */
102 "Could not open zoo as \"%s\", errno:%d %s",
110 "Could not open zoo as \"%s\", errno:%d %s",
124 "closing zoo caused error, errno:%d %s",
157 "seek error while writing to zoo file, errno:%d %s",
173 "error seeking to end of zoo file, errno:%d %s",
235 "seek error while writing to zoo file, errno:%d %s",
250 /* FIXME: unlock zoo file */
326 "failed to unlock zoo file, errno:%d %s",
363 "failed to lock zoo file, errno:%d %s",
423 printf("Test zoo filename is %s\n", zooname);
426 printf("Error opennning zoo\n");