Improve run-tests to accept more output code formats.
[pintos-anon] / grading / userprog / mkmf
index a45ee56c098bd11dcc4166a91c379f69f32c7166..7cfeae83828ab5cf4393213edbd2b1b77110f91a 100755 (executable)
@@ -46,3 +46,12 @@ while (<MAKEBASE>) {
 }
 close (MAKEBASE);
 
+open (CVSIGNORE, ">.cvsignore");
+print CVSIGNORE <<EOF;
+# Automatically generated by mkmf - do not modify!
+*.d
+*.dsk
+*.o
+EOF
+print CVSIGNORE join ("\n", @tests), "\n";
+close (CVSIGNORE);