Skip to content

Commit

Permalink
Merge pull request JuliaLang#6705 from tkelman/patch-4
Browse files Browse the repository at this point in the history
Clean up temp file litter
  • Loading branch information
staticfloat committed May 1, 2014
2 parents 5d48bbd + ad994a4 commit 7bb10f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/spawn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ end
file = tempname()
run(`echo hello world` |> file)
@test readall(file |> `cat`) == "hello world\n"
rm(file)

# Stream Redirection
@unix_only begin
Expand Down Expand Up @@ -101,6 +102,7 @@ file = tempname()
stdin, proc = writesto(`cat -` |> file)
write(stdin, str)
close(stdin)
rm(file)

# issue #3373
# fixing up Conditions after interruptions
Expand Down

0 comments on commit 7bb10f8

Please sign in to comment.