e5a054a02e7a80af675a99ba146c27465837f1d8
markd
  Thu Dec 21 10:13:23 2023 -0800
more work on running tests in parallel

diff --git src/utils/wigToBigWig/tests/makefile src/utils/wigToBigWig/tests/makefile
index 5fb8cc3..ca0ca0f 100644
--- src/utils/wigToBigWig/tests/makefile
+++ src/utils/wigToBigWig/tests/makefile
@@ -1,22 +1,24 @@
 kentSrc = ../../..
 A = ${DESTBINDIR}/wigToBigWig
 include ../../../inc/common.mk
 
 # this can not be run in parallel due to each test removing and reusing output directories
 .NOTPARALLEL:
 
+.NOTPARALLEL:  # files names are reused by tests
+
 test: test1 test2
 
 test1: outputDir
 	# generate big wigs
 	${A} input/testFixed.wig input/test.sizes tmp/testFixed.bigWig
 	${A} input/testVar.wig input/test.sizes tmp/testVar.bigWig
 	${A} input/testBedGraph.wig input/test.sizes tmp/testBedGraph.bigWig
 
 	# get unscaled data back out
 	bigWigToBedGraph tmp/testFixed.bigWig output/testFixed.bedGraph
 	bigWigToBedGraph tmp/testVar.bigWig output/testVar.bedGraph
 	bigWigToBedGraph tmp/testBedGraph.bigWig output/testBedGraph.bedGraph
 
 	# generate summaries on testFixed at lots of resolutions
 	bigWigSummary tmp/testFixed.bigWig chr7 115597761 115598761 1 > output/tf1.sum