8bf67a4375f3d5f15a109bea5a33a782c602fe67 braney Tue Mar 10 13:07:00 2026 -0700 hubCheck: warn about periods in track names refs #37223 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> diff --git src/hg/utils/hubCheck/tests/makefile src/hg/utils/hubCheck/tests/makefile index d7d5bd4287a..b1a37844c2e 100644 --- src/hg/utils/hubCheck/tests/makefile +++ src/hg/utils/hubCheck/tests/makefile @@ -1,21 +1,21 @@ kentSrc = ../../../.. include ../../../../inc/common.mk hubCheck = ${DESTBINDIR}/hubCheck -test:: one two errors supertrackChild genomesErrors badType badSubgroups autoScale noLongLabel badGroups goodGroups noCompositeGroup allowWarnings seqNameCheck noSeqNameCheck selfParent +test:: one two errors supertrackChild genomesErrors badType badSubgroups autoScale noLongLabel badGroups goodGroups noCompositeGroup allowWarnings seqNameCheck noSeqNameCheck selfParent dotInName ${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 @@ -58,20 +58,24 @@ ${hubCheck} -allowWarnings input/supertrackChild.txt > output/allowWarnings.output.txt 2> /dev/null diff expected/allowWarnings.output.txt output/allowWarnings.output.txt seqNameCheck: mkout -${hubCheck} input/seqNameHub.txt > output/seqNameCheck.output.txt 2>/dev/null diff expected/seqNameCheck.output.txt output/seqNameCheck.output.txt noSeqNameCheck: mkout -${hubCheck} -noSeqNameCheck input/seqNameHub.txt > output/noSeqNameCheck.output.txt 2>/dev/null diff expected/noSeqNameCheck.output.txt output/noSeqNameCheck.output.txt selfParent: mkout -${hubCheck} input/selfParent.txt > output/selfParent.output.txt 2>/dev/null diff expected/selfParent.output.txt output/selfParent.output.txt +dotInName: mkout + -${hubCheck} input/dotInName.txt > output/dotInName.output.txt 2>/dev/null + diff expected/dotInName.output.txt output/dotInName.output.txt + mkout:: @mkdir -p output clean:: rm -rf output