e8258c11259af202782b3c2bb62198cc55a3e2f1
hiram
  Tue Apr 7 12:59:16 2026 -0700
add testing in preparation for a new program to replace this one - these tests are the same for the new command, as suggested by claude refs #34370

diff --git src/hg/ratStuff/mafAddIRows/tests/makefile src/hg/ratStuff/mafAddIRows/tests/makefile
new file mode 100644
index 00000000000..1097628d9e8
--- /dev/null
+++ src/hg/ratStuff/mafAddIRows/tests/makefile
@@ -0,0 +1,20 @@
+kentSrc = ../../../..
+include ${kentSrc}/inc/common.mk
+
+A = mafAddIRows
+
+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