< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/DumpPathTest.java

Print this page
rev 56282 : [mq]: graal

*** 1,7 **** /* ! * Copyright (c) 2017, 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. --- 1,7 ---- /* ! * Copyright (c) 2017, 2019, 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.
*** 26,35 **** --- 26,36 ---- import java.io.IOException; import java.nio.file.DirectoryStream; import java.nio.file.Files; import java.nio.file.Path; + import java.nio.file.Paths; import jdk.internal.vm.compiler.collections.EconomicMap; import org.graalvm.compiler.debug.DebugOptions; import org.graalvm.compiler.debug.DebugOptions.PrintGraphTarget; import org.graalvm.compiler.options.OptionKey;
*** 47,72 **** } @Test public void testDump() throws IOException { assumeManagementLibraryIsLoadable(); ! Path dumpDirectoryPath = Files.createTempDirectory("DumpPathTest"); String[] extensions = new String[]{".cfg", ".bgv", ".graph-strings"}; EconomicMap<OptionKey<?>, Object> overrides = OptionValues.newOptionMap(); ! overrides.put(DebugOptions.DumpPath, dumpDirectoryPath.toString()); overrides.put(DebugOptions.PrintCFG, true); overrides.put(DebugOptions.PrintGraph, PrintGraphTarget.File); overrides.put(DebugOptions.PrintCanonicalGraphStrings, true); overrides.put(DebugOptions.Dump, "*"); // Generate dump files. test(new OptionValues(getInitialOptions(), overrides), "snippet"); // Check that IGV files got created, in the right place. ! checkForFiles(dumpDirectoryPath, extensions); ! ! // Clean up the generated files. ! removeDirectory(dumpDirectoryPath); } /** * Check that the given directory contains file or directory names with all the given * extensions. --- 48,71 ---- } @Test public void testDump() throws IOException { assumeManagementLibraryIsLoadable(); ! try (TemporaryDirectory temp = new TemporaryDirectory(Paths.get("."), "DumpPathTest")) { String[] extensions = new String[]{".cfg", ".bgv", ".graph-strings"}; EconomicMap<OptionKey<?>, Object> overrides = OptionValues.newOptionMap(); ! overrides.put(DebugOptions.DumpPath, temp.toString()); overrides.put(DebugOptions.PrintCFG, true); overrides.put(DebugOptions.PrintGraph, PrintGraphTarget.File); overrides.put(DebugOptions.PrintCanonicalGraphStrings, true); overrides.put(DebugOptions.Dump, "*"); // Generate dump files. test(new OptionValues(getInitialOptions(), overrides), "snippet"); // Check that IGV files got created, in the right place. ! checkForFiles(temp.path, extensions); ! } } /** * Check that the given directory contains file or directory names with all the given * extensions.
< prev index next >