projects
/
dbsrgits/SQL-Translator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
60f751e
)
Added explicit unlink of the temp file; it wasn't always being deleted.
Darren Chamberlain [Thu, 6 Nov 2003 13:52:58 +0000 (13:52 +0000)]
t/09sqlt-diagram.t
patch
|
blob
|
blame
|
history
diff --git
a/t/09sqlt-diagram.t
b/t/09sqlt-diagram.t
index
88ff610
..
eaa3430
100644
(file)
--- a/
t/09sqlt-diagram.t
+++ b/
t/09sqlt-diagram.t
@@
-39,4
+39,5
@@
if ($@ && $@ =~ /locate GD.pm in /) {
eval { system(@cmd); };
ok(!$@ && ($? == 0));
ok(-e $tmp);
+ eval { unlink $tmp; };
}