X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftests%2Ffilesys%2Fbase%2Fchild-syn-read.c;h=27ee59d99d03f36f12d10e01f7ddd16e2889d264;hb=520ff4dd2a106a4d4a21468a72ba820c8ea7d242;hp=a7801d4774e21673661053e89681bc56e96325a2;hpb=3cdb3abe959f205785f0f4fc7101a48bdbc90485;p=pintos-anon diff --git a/src/tests/filesys/base/child-syn-read.c b/src/tests/filesys/base/child-syn-read.c index a7801d4..27ee59d 100644 --- a/src/tests/filesys/base/child-syn-read.c +++ b/src/tests/filesys/base/child-syn-read.c @@ -1,7 +1,7 @@ /* Child process for syn-read test. Reads the contents of a test file a byte at a time, in the hope that this will take long enough that we can get a - significant amount of contention in the kernel filesystem + significant amount of contention in the kernel file system code. */ #include @@ -20,6 +20,7 @@ main (int argc, const char *argv[]) int fd; size_t i; + test_name = "child-syn-read"; quiet = true; CHECK (argc == 2, "argc must be 2, actually %d", argc); @@ -28,12 +29,12 @@ main (int argc, const char *argv[]) random_init (0); random_bytes (buf, sizeof buf); - CHECK ((fd = open (filename)) > 1, "open \"%s\"", filename); + CHECK ((fd = open (file_name)) > 1, "open \"%s\"", file_name); for (i = 0; i < sizeof buf; i++) { char c; - CHECK (read (fd, &c, 1) > 0, "read \"%s\"", filename); - compare_bytes (&c, buf + i, 1, i, filename); + CHECK (read (fd, &c, 1) > 0, "read \"%s\"", file_name); + compare_bytes (&c, buf + i, 1, i, file_name); } close (fd);