lttng: Do not use java.io.tmpdir property (/tmp) when possible
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ctf.core.tests / src / org / eclipse / linuxtools / tmf / ctf / core / tests / tracemanager / TmfTraceManagerTest.java
index 68c994960cfd01a29d9cf769f749c517d4f936cd..5919d827cc4bb279f175177f325ea9902e7c5a72 100644 (file)
@@ -222,7 +222,7 @@ public class TmfTraceManagerTest {
     public void testSupplementaryFileDir() {
         String name1 = trace1.getName();
         String name2 = trace2.getName();
-        String basePath = System.getProperty("java.io.tmpdir") + File.separator;
+        String basePath = TmfTraceManager.getTemporaryDirPath() + File.separator;
 
         String expected1 = basePath + name1 + File.separator;
         String expected2 = basePath + name2 + File.separator;
This page took 0.023564 seconds and 5 git commands to generate.