7113519: test/tools/javac/VersionOpt.java passes on windows
authorvromero
Mon, 10 Jun 2013 15:18:47 +0100
changeset 18385 3d41b3b9f305
parent 18384 484bb5ccaa4a
child 18386 174879d5b5d0
7113519: test/tools/javac/VersionOpt.java passes on windows Reviewed-by: jjg
langtools/test/tools/javac/VersionOpt.java
--- a/langtools/test/tools/javac/VersionOpt.java	Fri Jun 07 15:35:38 2013 -0700
+++ b/langtools/test/tools/javac/VersionOpt.java	Mon Jun 10 15:18:47 2013 +0100
@@ -1,6 +1,6 @@
 
 /*
- * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2005, 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
@@ -61,7 +61,7 @@
             javaHome = javaHome.getParentFile();
         File toolsJar = new File(new File(javaHome, "lib"), "tools.jar");
 
-        if (!javacHome.equals(toolsJar.toURI().toString())){
+        if (!javacHome.equalsIgnoreCase(toolsJar.toURI().toString())) {
             System.err.println("javac not found in tools.jar: " + javacHome);
             System.err.println("rest of test skipped");
             return;