Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/io/mappedbus/ByteArrayBasedIntegrityTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
public class ByteArrayBasedIntegrityTest {

public static final String FILE_NAME = "/tmp/bytearraybased-integrity-test";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "bytearraybased-integrity-test";

public static final long FILE_SIZE = 4000000L;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/MappedBusReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
public class MappedBusReaderTest {

public static final String FILE_NAME = "/tmp/MappedBusWriterTest";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "MappedBusWriterTest";

public static final long FILE_SIZE = 1000;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/MappedBusWriterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/
public class MappedBusWriterTest {

public static final String FILE_NAME = "/tmp/MappedBusWriterTest";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "MappedBusWriterTest";

public static final long FILE_SIZE = 1000;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/MemoryMappedFileTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

public class MemoryMappedFileTest {

public static final String FILE_NAME = "/tmp/memorymappedfile-test";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "memorymappedfile-test";

public static final long FILE_SIZE = 1000L;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/MemoryTester.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MemoryTester {

public static long VOLATILE_FIELD = 512;

public static final String FILE_NAME = "/tmp/memory-tester";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "memory-tester";

public static final long FILE_SIZE = 1000L;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/ObjectBasedIntegrityTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
public class ObjectBasedIntegrityTest {

public static final String FILE_NAME = "/tmp/objectbased-integrity-test";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "objectbased-integrity-test";

public static final long FILE_SIZE = 40000000;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/RollbackTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class RollbackTest {

public static final String FILE_NAME = "/tmp/rollback-tester";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "rollback-tester";

public static final int RECORD_SIZE = 8 * 8;

Expand Down
2 changes: 1 addition & 1 deletion test/io/mappedbus/TokenTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
*/
public class TokenTest {

public static final String FILE_NAME = "/tmp/token-test";
public static final String FILE_NAME = System.getProperty("java.io.tmpdir") + File.separator + "token-test";

public static final int RECORD_SIZE = 8;

Expand Down