ee8ef81c6d82157859f16548a27726f4b7421891
markd
  Mon Jul 6 19:22:14 2020 -0700
added support for perSeqMax in dynamic server

diff --git src/gfServer/makefile src/gfServer/makefile
index f548803..4ed3fc7 100644
--- src/gfServer/makefile
+++ src/gfServer/makefile
@@ -1,23 +1,27 @@
 kentSrc = ..
 A = gfServer
 preMyLibs += ../lib/$(MACHTYPE)/jkOwnLib.a
 include $(kentSrc)/inc/userApp.mk
 L += -lm $(SOCKETLIB)
 
 test::
 	${MKDIR} tests/output
 	${DESTBINDIR}/${A} direct tests/input/mCrea.mrna tests/input/hCreaGeno.nib \
-		tests/input/mCreaGeno.nib > tests/output/testNib
+		tests/input/mCreaGeno.nib > tests/output/testNib.out
+	diff tests/expected/testNib.out tests/output/testNib.out
 	${DESTBINDIR}/${A} direct tests/input/mCrea.mrna tests/input/creaGeno.2bit \
-		>tests/output/testTwoBit
-	cd tests && ./testProtNib output/testProtNib
-	cd tests && ./testProtTwoBit output/testProtTwoBit
-	cd tests && ./testTransNib output/testTransNib
-	cd tests && ./testTransTwoBit output/testTransTwoBit
-	cd tests && ./testPcr output/testPcr
-	cd tests && ./testIndexFile output/testIndexFile
-	cd tests && ./testIndexFileTrans output/testIndexFileTrans
-	rm -r tests/output
+		>tests/output/testTwoBit.out
+	diff tests/expected/testTwoBit.out tests/output/testTwoBit.out
+	cd tests && ./testProtNib
+	cd tests && ./testProtTwoBit
+	cd tests && ./testTransNib
+	cd tests && ./testTransTwoBit
+	cd tests && ./testPcr
+	cd tests && ./testIndexFile
+	cd tests && ./testIndexFileTrans
+	cd tests && ./testDynServer
+	cd tests && ./testDynServerTrans
+	cd tests && ./testDynServerPerSeqMax
 
 clean::
 	rm -fr ${O} tests/output