ac063fda9ecd0d3b782a81cb1ac71ae8a9480167
hiram
  Tue Nov 12 11:17:51 2013 -0800
running any test that can be found refs #9149
diff --git src/utils/makefile src/utils/makefile
index 23905a2..076c562 100644
--- src/utils/makefile
+++ src/utils/makefile
@@ -167,35 +167,39 @@
 
 scripts: $(SCRIPT_FILES:%=%.scripts)
 	chmod +x genePredToBed/genePredToBed;
 	rm -f ${SCRIPTS}/genePredToBed;
 	echo cp -p genePredToBed/genePredToBed ${SCRIPTS};
 	@cp -p genePredToBed/genePredToBed ${SCRIPTS};
 
 %.scripts:
 	chmod +x $*
 	rm -f ${SCRIPTS}/$*
 	echo cp -p $* ${SCRIPTS}
 	cp -p $* ${SCRIPTS}
 
 alpha: scripts all
 
-test:
+testAll: $(ALL_APPS:%=%.testAll)
+
+%.testAll:
+	@test -s $*/tests/makefile && (echo OK $*; cd $* && $(MAKE) test) || true
+
+test: testAll
 	cd faToTwoBit && ${MAKE} test
 	cd twoBitToFa && ${MAKE} test
 	cd twoBitInfo && ${MAKE} test
-	cd pslLiftSubrangeBlat && ${MAKE} test
 	cd bedGeneParts && ${MAKE} test
 
 clean: $(ALL_APPS:%=%.clean)
 	touch non-empty-rm.o
 	- find . -name \*.o -print | xargs rm
 
 %.clean:
 	cd $* && echo $* && $(MAKE) clean
 
 BAD_DIRS= \
 	ccCpLock \
 	est2genomeToPsl \
 	geneStarts \
 	jimgrep \
 	jkShell \