Skip to content

Commit c168aa1

Browse files
committed
[SYSTEMDS-3893] Fix out-of-core test case (metadata file locations)
The test failure of not finding the mtd-file did not show up in local tests, because locally we do not clean the test directories, and from development there were both Xmtd and X.mtd existing.
1 parent 58361b2 commit c168aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void testSumScalarMult() {
7373
MatrixBlock mb = MatrixBlock.randOperations(rows, cols, 1.0, -1, 1, "uniform", 7);
7474
MatrixWriter writer = MatrixWriterFactory.createMatrixWriter(FileFormat.BINARY);
7575
writer.writeMatrixToHDFS(mb, input(INPUT_NAME), rows, cols, 1000, rows*cols);
76-
HDFSTool.writeMetaDataFile(input(INPUT_NAME+"mtd"), ValueType.FP64,
76+
HDFSTool.writeMetaDataFile(input(INPUT_NAME+".mtd"), ValueType.FP64,
7777
new MatrixCharacteristics(rows,cols,1000,rows*cols), FileFormat.BINARY);
7878

7979
runTest(true, false, null, -1);

0 commit comments

Comments
 (0)