bad1c2af619824bbeff311b8f0b97d3dc75f9260
markd
  Thu Dec 21 00:45:15 2023 -0800
Work on being able to run tests in parallel.  Due to timing, it might still have issues

diff --git src/hg/makefile src/hg/makefile
index 9f7d1cb..8d29b19 100644
--- src/hg/makefile
+++ src/hg/makefile
@@ -11,41 +11,36 @@
 	encode/hgEncodeDataVersions encode/hgEncodeVocab encode/hgEncodeApi \
 	phyloPng hgCustom hgPal hgFileUi hgFileSearch makeDb/hgCgiData \
 	js htdocs/style hgMirror hgBeacon hgGtexTrackSettings pyLib \
 	hgGeneGraph hgs hubApi hgPhyloPlace gar hgSearch
 
 ifdef LOWELAB
     BROWSER_BINS += $(HOME)/lowelab/src/browser/tooltip $(HOME)/lowelab/src/browser/chooseorg
 endif
 
 BROWSER_LOADERS = makeDb/hgLoadBed makeDb/hgLoadWiggle makeDb/hgLoadMaf utils/pslToBigPsl utils/hubCheck
 
 ifneq ($(findstring $(shell hostname),hgwdev hgwbeta),)
     ENCODE_FILES = encode3/encodeDataWarehouse
 endif
 
+# these should not be included in UTILS_APPLIST or parallel test runs will fail
+TEST_DIRS = lib
 
-TEST_DIRS = lib autoDtd autoSql blastToPsl checkTableCoords embossToPsl \
-            genePredSingleCover genePredHisto genePredToBed genePredToGtf \
-	    genePredToMafFrames gbGetEntries hgGetAnn liftAcross \
-            mouseStuff mrnaToGene pslCDnaFilter pslDiff pslHisto \
-            pslPartition pslSelect pslStats pslToBed spideyToPsl \
-	    sqlToXml xmlToSql utils
+TEST_EXTRA = cgilib
 
-TEST_EXTRA = cgilib liftOver
-
-BROKEN_TEST_DIRS = liftOver scaffoldFaToAgp
+BROKEN_TEST_DIRS =  scaffoldFaToAgp
 
 BAD_DIRS = \
 	altGraph \
 	cgiExample \
 	geneOverlap \
 	hgBatch \
 	makeSeqs \
 	oneShot \
 	synMap \
 	encode \
 	wikiPlot
 
 # can not build this on Mac OSX - has functions not supported
 UNAME_S := $(shell uname -s) 
 ifeq ($(UNAME_S),Darwin)