4ad0e02ecf9b2e9dd03c37e72dcec0915d3d9d3e
max
  Wed Jun 11 06:02:25 2025 -0700
allowing dot in MAF files and also a pipe character, email with Hiram, ticket is coming

diff --git src/hg/makeDb/hgLoadMaf/tests/makefile src/hg/makeDb/hgLoadMaf/tests/makefile
index 37d978a9b4e..4e7b20cffe8 100644
--- src/hg/makeDb/hgLoadMaf/tests/makefile
+++ src/hg/makeDb/hgLoadMaf/tests/makefile
@@ -1,24 +1,34 @@
 kentSrc = ../../../..
 include ../../../../inc/common.mk
 # tests for hgLoadMaf
 
 hgLoadMaf = ${DESTBINDIR}/hgLoadMaf
+hgLoadMafSummary = ${DESTBINDIR}/hgLoadMafSummary
 
-test: testoutput clean
+#test: testoutput clean
+test: testdot testpipe clean
 
 TEST1 = testNan
 
 testoutput: ${TEST1}
 
 clean:
 	rm -fr output
 
+testdot: init-tests
+	${hgLoadMafSummary} -test hg38 output/testDot input/testDot.maf
+	diff output/testDot.tab expected
+
+testpipe: init-tests
+	${hgLoadMafSummary} -test hg38 output/testPipe input/testPipe.maf
+	diff output/testPipe.tab expected
+
 testNan: init-tests
 	${hgLoadMaf} -warn -test=input/${TEST1}.maf hg16 ${TEST1} > output/${TEST1}.log
 	mv ${TEST1}.tab output
 	diff output/${TEST1}.tab expected
 	diff output/${TEST1}.log expected
 
 init-tests:
 	${MKDIR} output