You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by mb...@apache.org on 2016/01/10 23:31:23 UTC

[4/4] incubator-systemml git commit: [SYSTEMML-146] Fix old rowsums test (removed missing unused input file)

[SYSTEMML-146] Fix old rowsums test (removed missing unused input file)

After having introduced the additional check for non-existing read input
files, this test failed due to a missing input 'in/helper'. The test did
not fail before because the dimensions were specified (no need to read
non-existing mtd file) and the read variable was never used. Removing
the unnecessary read from the script template fixed this issue.

Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/572752a9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/572752a9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/572752a9

Branch: refs/heads/master
Commit: 572752a9e310b5dedd712bc078a779bed5b8e5aa
Parents: 888c9ca
Author: Matthias Boehm <mb...@us.ibm.com>
Authored: Sun Jan 10 14:29:52 2016 -0800
Committer: Matthias Boehm <mb...@us.ibm.com>
Committed: Sun Jan 10 14:29:52 2016 -0800

----------------------------------------------------------------------
 src/test/scripts/functions/aggregate/RowSumTest.dml | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/572752a9/src/test/scripts/functions/aggregate/RowSumTest.dml
----------------------------------------------------------------------
diff --git a/src/test/scripts/functions/aggregate/RowSumTest.dml b/src/test/scripts/functions/aggregate/RowSumTest.dml
index 949abf1..cdedda5 100644
--- a/src/test/scripts/functions/aggregate/RowSumTest.dml
+++ b/src/test/scripts/functions/aggregate/RowSumTest.dml
@@ -21,8 +21,6 @@
 
 # junit test class: org.apache.sysml.test.integration.functions.aggregate.RowSumTest.java
 
-$$readhelper$$
-
 Vector = read("$$indir$$vector", rows=$$rows$$, cols=1, format="text");
 VectorRowSum = rowSums(Vector);
 write(VectorRowSum, "$$outdir$$vector_rowsum", format="text");