RFR for JDK-8027901 Intermittent test failure java/net/ProxySelector/MultiThreadedSystemProxies.java
Charlie Wang
charlie.wang at oracle.com
Tue Nov 19 03:25:01 PST 2013
Hi Everyone,
I am working on intermittent bug
https://bugs.openjdk.java.net/browse/JDK-8027901. I've tried running 1K
times and wasn't able to reproduce it. Also in recent same binaries run,
there was no failure for this test. I wonder if it is possible that I
add some debug output (like time stamp as in attachment.) to the test so
I can collect more info if it fails again. Please let me know if you
have any comments or suggestions.
- Charlie
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/net-dev/attachments/20131119/b14425f3/attachment.html
-------------- next part --------------
/*
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 7188755
* @run main/othervm MultiThreadedSystemProxies
* @summary Crash due to missing synchronization on gconf_client in
* DefaultProxySelector.c
*/
import java.net.ProxySelector;
import java.net.URI;
/* Racey test, not guaranteed to fail, but if it does we have a problem. */
public class MultiThreadedSystemProxies {
static final int NUM_THREADS = 100;
static long currentTime;
public static void main(String[] args) throws Exception {
System.setProperty("java.net.useSystemProxies", "true");
final ProxySelector ps = ProxySelector.getDefault();
final URI uri = new URI("http://ubuntu.com");
Thread[] threads = new Thread[NUM_THREADS];
System.out.println("MultiThreadedSystemProxies start time: "
+ System.currentTimeMillis());
for (int i = 0; i < NUM_THREADS; i++) {
threads[i] = new Thread(new Runnable() {
@Override
public void run() {
try {
currentTime = System.currentTimeMillis();
System.out.println("Thread[" + this.toString()
+ "] start time: " + currentTime);
ps.select(uri);
System.out.println("Thread[" + this.toString()
+ "] took:"
+ (System.currentTimeMillis() - currentTime));
} catch (Exception x) {
throw new RuntimeException(x);
}
}
});
}
for (int i = 0; i < NUM_THREADS; i++) {
threads[i].start();
}
for (int i = 0; i < NUM_THREADS; i++) {
threads[i].join();
}
System.out.println("MultiThreadedSystemProxies end time: "
+ System.currentTimeMillis());
}
}
More information about the net-dev
mailing list