1b7d4ae05dffff0eeb67deac21f445816ad4e21d hiram Tue Apr 7 13:02:32 2026 -0700 add testing for this new program to replace mafAddIRows - this has been exhaustedly tested with full runs on hs1 and hg38 Tb of data input and output, identical to mafAddIRows - these tests are the same for the new and previous command, as suggested by claude refs #34370 diff --git src/hg/ratStuff/mafAddIRowsStream/tests/makefile src/hg/ratStuff/mafAddIRowsStream/tests/makefile new file mode 100644 index 00000000000..0f7655109a3 --- /dev/null +++ src/hg/ratStuff/mafAddIRowsStream/tests/makefile @@ -0,0 +1,20 @@ +kentSrc = ../../../.. +include ${kentSrc}/inc/common.mk + +A = mafAddIRowsStream + +test: test1 testGC + @echo "all tests passed" + +test1: + ${A} input/input.maf input/input.2bit out1.maf + diff out1.maf expected/expected.maf + rm -f out1.maf + +testGC: + ${A} input/inputGC.maf input/input.2bit outGC.maf + diff outGC.maf expected/expectedGC.maf + rm -f outGC.maf + +clean:: + rm -f out1.maf outGC.maf