702afb4c46543f3a415c0e31e3671f85b78e22ba
chmalee
  Mon Nov 9 12:37:34 2020 -0800
hubCheck for assembly hubs now warns when twoBitPath, htmlPath and descriptionUrl are missing or are malformed, refs #26459

diff --git src/hg/utils/hubCheck/tests/makefile src/hg/utils/hubCheck/tests/makefile
index 79bae04..7997eaa 100644
--- src/hg/utils/hubCheck/tests/makefile
+++ src/hg/utils/hubCheck/tests/makefile
@@ -1,29 +1,33 @@
 kentSrc = ../../../..
 include ../../../../inc/common.mk
 
 hubCheck = ${DESTBINDIR}/hubCheck
 
-test:: one two errors
+test:: one two errors supertrackChild genomesErrors
 	${MAKE} clean
 
 one:	mkout
 	-${hubCheck} input/hub1.txt > output/output1.txt
 	diff expected/output1.txt output/output1.txt
 
 two:	mkout
 	-${hubCheck} input/hub2.txt > output/output2.txt 2> /dev/null
 	diff expected/output2.txt output/output2.txt
 
 supertrackChild: mkout
 	-${hubCheck} input/supertrackChild.txt > output/supertrackChild.txt 2> /dev/null
 	diff expected/supertrackChild.txt output/supertrackChild.txt
 
 errors:	mkout
 	-${hubCheck} input/manyErrorsHub.txt > output/manyErrors.output.txt 2>/dev/null
 	diff expected/manyErrors.output.txt output/manyErrors.output.txt
 
+genomesErrors: mkout
+	-${hubCheck} input/genomesConfigErrorsHub.txt > output/genomesConfigErrors.output.txt 2>/dev/null
+	diff expected/genomesConfigErrors.output.txt output/genomesConfigErrors.output.txt
+
 mkout::
 	@mkdir -p output
 clean::
 	rm -rf output