--- old/test/compiler/aot/cli/jaotc/JaotcTestHelper.java 2017-02-08 13:39:07.881631954 -0500 +++ new/test/compiler/aot/cli/jaotc/JaotcTestHelper.java 2017-02-08 13:39:06.417547509 -0500 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2017, 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 @@ -71,6 +71,6 @@ } public static String getClassAotCompilationName(Class classToCompile) { - return classToCompile.getName().replaceAll("\\.", File.separator) + ".class"; + return classToCompile.getName().replaceAll("\\.", "/") + ".class"; } }