/hg/icedtea-web: * Makefile: (stamps/run-netx-unit-tests.stamp) ...

jvanek at icedtea.classpath.org jvanek at icedtea.classpath.org
Thu May 4 14:04:11 UTC 2017


changeset 13cf373ecdba in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=13cf373ecdba
author: Jiri Vanek <jvanek at redhat.com>
date: Thu May 04 16:13:43 2017 +0200

	* Makefile: (stamps/run-netx-unit-tests.stamp) variable CLASSPATH's content and its usage on with Xbootclasspath put to quotes, to run junits in cygwin. Note, that this issue is spread on all usages of raw call to joinsegments and its results. Will be fixed on demand.


diffstat:

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

diffs (28 lines):

diff -r 586e12244c40 -r 13cf373ecdba ChangeLog
--- a/ChangeLog	Thu May 04 14:49:13 2017 +0200
+++ b/ChangeLog	Thu May 04 16:13:43 2017 +0200
@@ -1,3 +1,10 @@
+2017-05-04  Jiri Vanek <jvanek at redhat.com>
+
+	* Makefile: (stamps/run-netx-unit-tests.stamp) variable CLASSPATH's content
+	and its usage on with Xbootclasspath put to quotes, to run junits in cygwin.
+	Note, that this issue is spread on all usages of raw call to joinsegments and its
+	results. Will be fixed on demand.
+
 2017-05-04  Jiri Vanek <jvanek at redhat.com>
 
 	* Makefile: (install-data-local) when copying to WIN_RUN_DEPS, the name of
diff -r 586e12244c40 -r 13cf373ecdba Makefile.am
--- a/Makefile.am	Thu May 04 14:49:13 2017 +0200
+++ b/Makefile.am	Thu May 04 16:13:43 2017 +0200
@@ -1354,8 +1354,8 @@
 	done ; \
 	cd $(NETX_UNIT_TEST_DIR) ; \
 	class_names=`cat $(UNIT_CLASS_NAMES)` ; \
-	CLASSPATH=$(call joinsegments, $(NETX_DIR)/lib/classes.jar $(TOP_BUILD_DIR)/liveconnect/lib/classes.jar $(JUNIT_RUNTIME) $(JUNIT_RUNNER_JAR) $(TEST_EXTENSIONS_DIR) . $(TEST_EXTENSIONS_SRCDIR) $(TAGSOUP_JAR)) ; \
-	  $(SYSTEM_JRE_DIR)/bin/java -Xbootclasspath/a:$$CLASSPATH CommandLine $$class_names 
+	CLASSPATH="$(call joinsegments, $(NETX_DIR)/lib/classes.jar $(TOP_BUILD_DIR)/liveconnect/lib/classes.jar $(JUNIT_RUNTIME) $(JUNIT_RUNNER_JAR) $(TEST_EXTENSIONS_DIR) . $(TEST_EXTENSIONS_SRCDIR) $(TAGSOUP_JAR))" ; \
+	  $(SYSTEM_JRE_DIR)/bin/java "-Xbootclasspath/a:$$CLASSPATH" CommandLine $$class_names 
 if WITH_XSLTPROC
 	-$(XSLTPROC) --stringparam logs logs_unit.html $(TESTS_SRCDIR)/$(REPORT_STYLES_DIRNAME)/jreport.xsl $(NETX_UNIT_TEST_DIR)/tests-output.xml > $(TESTS_DIR)/index_unit.html
 	-$(XSLTPROC) $(TESTS_SRCDIR)/$(REPORT_STYLES_DIRNAME)/logs.xsl $(NETX_UNIT_TEST_DIR)/ServerAccess-logs.xml > $(TESTS_DIR)/logs_unit.html


More information about the distro-pkg-dev mailing list