This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new c168aa19ef [SYSTEMDS-3893] Fix out-of-core test case (metadata file
locations)
c168aa19ef is described below
commit c168aa19efb6c16f195bc15a98a6ab5a0900bf41
Author: Matthias Boehm <[email protected]>
AuthorDate: Sun Jul 13 13:13:18 2025 +0200
[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.
---
.../apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/test/java/org/apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java
b/src/test/java/org/apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java
index 3681b74f83..dafc9c7bf6 100644
---
a/src/test/java/org/apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java
+++
b/src/test/java/org/apache/sysds/test/functions/ooc/SumScalarMultiplicationTest.java
@@ -73,7 +73,7 @@ public class SumScalarMultiplicationTest extends
AutomatedTestBase {
MatrixBlock mb = MatrixBlock.randOperations(rows, cols,
1.0, -1, 1, "uniform", 7);
MatrixWriter writer =
MatrixWriterFactory.createMatrixWriter(FileFormat.BINARY);
writer.writeMatrixToHDFS(mb, input(INPUT_NAME), rows,
cols, 1000, rows*cols);
- HDFSTool.writeMetaDataFile(input(INPUT_NAME+"mtd"),
ValueType.FP64,
+ HDFSTool.writeMetaDataFile(input(INPUT_NAME+".mtd"),
ValueType.FP64,
new
MatrixCharacteristics(rows,cols,1000,rows*cols), FileFormat.BINARY);
runTest(true, false, null, -1);