RFR 8198834: (ch) Enable java/nio/channels/spi/SelectorProvider/inheritedChannel/InheritedChannelTest.java on linux-x64
Brian Burkhalter
brian.burkhalter at oracle.com
Wed Feb 28 15:59:42 UTC 2018
https://bugs.openjdk.java.net/browse/JDK-8198834
This changes the Makefile so that libLauncher.so is built for 64-bit Linux. The change has been tested successfully. The Makefile diff is included below; libLauncher.so will also be part of the change but is not posted here.
Thanks,
Brian
--- a/test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/Makefile
+++ b/test/jdk/java/nio/channels/spi/SelectorProvider/inheritedChannel/Makefile
@@ -33,20 +33,23 @@
ifeq ($(uname), Linux)
PLATFORM = linux
archExpr = case "`$(UNAME) -m`" in \
i[3-6]86) \
$(ECHO) i586 \
;; \
sparc*) \
$(ECHO) sparc \
;; \
+ x86_64) \
+ $(ECHO) amd64 \
+ ;; \
*) \
$(UNAME) -m \
;; \
esac
ARCH := $(shell $(archExpr) )
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/nio-dev/attachments/20180228/5e55ef01/attachment.html>
More information about the nio-dev
mailing list