remove extra debugging info which can cause problems if cwd not writable.

This commit is contained in:
Nathan Scott
2001-07-04 06:57:38 +00:00
parent cb3656b5df
commit 462aa20d13
+4 -2
View File
@@ -65,11 +65,13 @@ _file_as_id()
_notrun "broken type in call to _file_as_id in test $seq"
fi
perl <<EOF
perl <<EOF >/dev/null 2>&1
\$| = 1;
$magik = $2;
exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seq.full 2>&1";
exec "dd if=/dev/zero of=$1 bs=$4 count=$5";
EOF
# for debugging the above euid change, try... [need write in cwd]
# exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seq.full 2>&1";
}
_choose_uid()