Make close-stdin, close-stdout expected output more flexible.
[pintos-anon] / grading / userprog / mkmf
index a45ee56c098bd11dcc4166a91c379f69f32c7166..1b73a84de0275a99312a253eb0435f27408bcbbf 100755 (executable)
@@ -46,3 +46,18 @@ while (<MAKEBASE>) {
 }
 close (MAKEBASE);
 
+open (CVSIGNORE, ">.cvsignore");
+print CVSIGNORE <<EOF;
+# Automatically generated by mkmf - do not modify!
+*.d
+*.dsk
+*.o
+bochsrc.txt
+bochsout.txt
+child-arg
+child-bad
+child-close
+child-simple
+EOF
+print CVSIGNORE join ("\n", @tests), "\n";
+close (CVSIGNORE);