X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=grading%2Ffilesys%2Fgrow-sparse.c;h=c8b6a8f36a6948f568e247d5a201c03762774c8f;hb=e2c7fa52b1352b6fe736050e30c3a9a9ad633307;hp=896b2facb5913d1ae0099fe5e4a5446ba660d867;hpb=dd2f9330108fbf488d9de8be9b4a7419d0ec97a4;p=pintos-anon diff --git a/grading/filesys/grow-sparse.c b/grading/filesys/grow-sparse.c index 896b2fa..c8b6a8f 100644 --- a/grading/filesys/grow-sparse.c +++ b/grading/filesys/grow-sparse.c @@ -9,15 +9,16 @@ static char buf[76543]; void test_main (void) { + const char *filename = "testfile"; char zero = 0; int fd; - check (create ("testfile", 0), "create \"testfile\""); - check ((fd = open ("testfile")) > 1, "open \"testfile\""); - msg ("seek \"testfile\""); + CHECK (create (filename, 0), "create \"%s\"", filename); + CHECK ((fd = open (filename)) > 1, "open \"%s\"", filename); + msg ("seek \"%s\"", filename); seek (fd, sizeof buf - 1); - check (write (fd, &zero, 1) > 0, "write \"testfile\""); - msg ("close \"testfile\""); + CHECK (write (fd, &zero, 1) > 0, "write \"%s\"", filename); + msg ("close \"%s\"", filename); close (fd); - check_file ("testfile", buf, sizeof buf); + check_file (filename, buf, sizeof buf); }