/hg/icedtea-web: 2 new changesets

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Wed Feb 25 14:30:30 UTC 2015


changeset 65b6635a1d2e in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=65b6635a1d2e
author: Jiri Vanek <jvanek at redhat.com>
date: Wed Feb 25 15:09:02 2015 +0100

	netx-dist-tests-whitelist mad mandatory and will be removed


changeset 3b024b5cd4b7 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=3b024b5cd4b7
author: Jiri Vanek <jvanek at redhat.com>
date: Wed Feb 25 15:30:11 2015 +0100

	forgotten netx-dist-tests-whitelist


diffstat:

 ChangeLog   |  4 ++++
 Makefile.am |  8 ++++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diffs (33 lines):

diff -r d52d1381012f -r 3b024b5cd4b7 ChangeLog
--- a/ChangeLog	Tue Feb 24 16:17:28 2015 +0100
+++ b/ChangeLog	Wed Feb 25 15:30:11 2015 +0100
@@ -1,3 +1,7 @@
+2015-02-25  Jiri Vanek  <jvanek at redhat.com>
+
+	* Makefile.am: netx-dist-tests-whitelist mad mandatory and will be removed
+
 2015-02-24  Jiri Vanek  <jvanek at redhat.com>
 
 	Marking threads in ResourceTracker's threadPool as daemons, so the dont prevent shutdown.
diff -r d52d1381012f -r 3b024b5cd4b7 Makefile.am
--- a/Makefile.am	Tue Feb 24 16:17:28 2015 +0100
+++ b/Makefile.am	Wed Feb 25 15:30:11 2015 +0100
@@ -193,12 +193,16 @@
 endif
 endif
 
+# if you create netx-dist-tests-whitelist in top directory, and place "expr match" regexes
+# (separate by one of IFS's values (most commonly space)) into it, you can control reproducers which compile or/xor run.
+# if you need declare space in your regex, use \s as described in "expr match" documentation
+ECHO_WHITELIST=if [ -f $(REPRODUCERS_CLASS_WHITELIST) ] ; then cat $(REPRODUCERS_CLASS_WHITELIST) ; else echo ".*" ; fi
 if ENABLE_WHITELIST
-COMPILE_WHITELIST_FILTER=`cat $(REPRODUCERS_CLASS_WHITELIST)`
+COMPILE_WHITELIST_FILTER=`$(ECHO_WHITELIST)`
 RUN_WHITELIST_FILTER=.*
 else
 COMPILE_WHITELIST_FILTER=.*
-RUN_WHITELIST_FILTER=`cat $(REPRODUCERS_CLASS_WHITELIST)`
+RUN_WHITELIST_FILTER=`$(ECHO_WHITELIST)`
 endif
 
 if WITH_RHINO


More information about the distro-pkg-dev mailing list