6a2716efadd8b37d455f38339a897d187fc811fe
chmalee
  Tue Nov 19 13:21:16 2019 -0800
Adding a test hub with many common trackDb configuration errors to source tree, after discussion with Max and Braney

diff --git src/hg/utils/hubCheck/tests/makefile src/hg/utils/hubCheck/tests/makefile
index fa6af50..0be0309 100644
--- src/hg/utils/hubCheck/tests/makefile
+++ src/hg/utils/hubCheck/tests/makefile
@@ -1,21 +1,25 @@
 kentSrc = ../../../..
 include ../../../../inc/common.mk
 
 hubCheck = ${DESTBINDIR}/hubCheck
 
-test:: one two
+test:: one two errors
 	${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
 
+errors:	mkout
+	-${hubCheck} input/manyErrorsHub.txt > output/manyErrors.output.txt 2>/dev/null
+	diff expected/manyErrors.output.txt output/manyErrors.output.txt
+
 mkout::
 	@mkdir -p output
 clean::
 	rm -rf output