< prev index next >

test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java

Print this page
rev 59383 : [mq]: final

*** 1,7 **** /* ! * Copyright (c) 2013, 2018, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2013, 2020, 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. Oracle designates this
*** 71,83 **** assertTrue(expectedLibs.isEmpty(), "Missing libraries:" + expectedLibs.stream().collect(Collectors.joining(", "))); } private static List<String> getExpectedLibs() throws Throwable { String libTemplate = null; ! if (Platform.isSolaris()) { ! libTemplate = "lib%s.so"; ! } else if (Platform.isWindows()) { libTemplate = "%s.dll"; } else if (Platform.isOSX()) { libTemplate = "lib%s.dylib"; } else if (Platform.isLinux()) { libTemplate = "lib%s.so"; --- 71,81 ---- assertTrue(expectedLibs.isEmpty(), "Missing libraries:" + expectedLibs.stream().collect(Collectors.joining(", "))); } private static List<String> getExpectedLibs() throws Throwable { String libTemplate = null; ! if (Platform.isWindows()) { libTemplate = "%s.dll"; } else if (Platform.isOSX()) { libTemplate = "lib%s.dylib"; } else if (Platform.isLinux()) { libTemplate = "lib%s.so";
< prev index next >