From 63c141c5125759fd56f86d21cdf035ce2ff5d217 Mon Sep 17 00:00:00 2001 From: Alexander Zuev Date: Wed, 5 Jun 2013 16:58:10 +0400 Subject: [PATCH] 7186887: Test T6567415.java can fail on a slow machine Reviewed-by: jjg, ksrini --- langtools/test/tools/javac/6567415/T6567415.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/langtools/test/tools/javac/6567415/T6567415.java b/langtools/test/tools/javac/6567415/T6567415.java index 683197e6e84..a308d286b35 100644 --- a/langtools/test/tools/javac/6567415/T6567415.java +++ b/langtools/test/tools/javac/6567415/T6567415.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2013 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 @@ -137,7 +137,7 @@ public class T6567415 { } }; t.start(); - t.join(1000*10); + t.join(1000*60); System.out.println(t.getState()); if (t.isAlive()) { throw new RuntimeException("Error: compilation is looping");