Use a randomly generated temp file name so that our simultaneous parallel
builds don't stomp on one another. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2040 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -61,7 +61,7 @@ public class HashIntMapTest extends TestCase
|
||||
populateTable(table);
|
||||
|
||||
try {
|
||||
File tmpfile = new File("/tmp/himt.dat");
|
||||
File tmpfile = File.createTempFile("himt", "dat");
|
||||
|
||||
FileOutputStream fout = new FileOutputStream(tmpfile);
|
||||
ObjectOutputStream out = new ObjectOutputStream(fout);
|
||||
|
||||
Reference in New Issue
Block a user