30c104443327d6c2c7beaf0e9d508bf2f123f15c kent Sun Dec 19 08:52:58 2021 -0800 Adding basic tests to test chain. diff --git src/utils/matrixNormalize/tests/makefile src/utils/matrixNormalize/tests/makefile new file mode 100644 index 0000000..fee2c43 --- /dev/null +++ src/utils/matrixNormalize/tests/makefile @@ -0,0 +1,11 @@ + +test: + mkdir -p out + matrixNormalize row sum test.in out/rowSum.out + diff expected/rowSum.out out/rowSum.out + matrixNormalize row length test.in out/rowLength.out + diff expected/rowLength.out out/rowLength.out + matrixNormalize column sum test.in out/colSum.out + diff expected/colSum.out out/colSum.out + matrixNormalize column length test.in out/colLength.out + diff expected/colLength.out out/colLength.out