Commit 5f3f9499 authored by Aaron Jacobs's avatar Aaron Jacobs

Undid debugging changes.

parent fddf222e
...@@ -236,7 +236,6 @@ func (t *SubprocessTest) initialize() (err error) { ...@@ -236,7 +236,6 @@ func (t *SubprocessTest) initialize() (err error) {
// Set up basic args for the subprocess. // Set up basic args for the subprocess.
args := []string{ args := []string{
"--fuse.debug",
"--type", "--type",
t.MountType, t.MountType,
"--mount_point", "--mount_point",
...@@ -271,7 +270,7 @@ func (t *SubprocessTest) initialize() (err error) { ...@@ -271,7 +270,7 @@ func (t *SubprocessTest) initialize() (err error) {
// Set up a command. // Set up a command.
var stderr bytes.Buffer var stderr bytes.Buffer
mountCmd := exec.Command(toolPath, args...) mountCmd := exec.Command(toolPath, args...)
mountCmd.Stderr = os.Stderr mountCmd.Stderr = &stderr
mountCmd.ExtraFiles = extraFiles mountCmd.ExtraFiles = extraFiles
// Start it. // Start it.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment