< prev index next >

test/serviceability/logging/TestQuotedLogOutputs.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test TestQuotedLogOutputs
  26  * @summary Ensure proper parsing of quoted output names for -Xlog arguments.
  27  * @modules java.base/jdk.internal.misc
  28  * @library /testlibrary
  29  */
  30 
  31 import java.io.File;
  32 import java.nio.file.Path;
  33 import java.nio.file.Paths;
  34 
  35 import jdk.test.lib.Asserts;
  36 import jdk.test.lib.ProcessTools;
  37 import jdk.test.lib.OutputAnalyzer;
  38 
  39 public class TestQuotedLogOutputs {
  40 
  41     public static void main(String[] args) throws Exception {
  42         // Ensure log files can be specified with full path.
  43         // On windows, this means that the file name will contain
  44         // a colon ('C:\log.txt' for example), which is used to
  45         // separate -Xlog: options (-Xlog:tags:filename:decorators).
  46         // Try to log to a file in our current directory, using its absolute path.
  47         String baseName = "test file.log";
  48         Path filePath = Paths.get(baseName).toAbsolutePath();
  49         String fileName = filePath.toString();
  50         File file = filePath.toFile();
  51 
  52         // In case the file already exists, attempt to delete it before running the test
  53         file.delete();
  54 
  55         // Depending on if we're on Windows or not the quotation marks must be escaped,
  56         // otherwise they will be stripped from the command line arguments.
  57         String quote;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test TestQuotedLogOutputs
  26  * @summary Ensure proper parsing of quoted output names for -Xlog arguments.
  27  * @modules java.base/jdk.internal.misc
  28  * @library /test/lib
  29  */
  30 
  31 import java.io.File;
  32 import java.nio.file.Path;
  33 import java.nio.file.Paths;
  34 
  35 import jdk.test.lib.Asserts;
  36 import jdk.test.lib.process.ProcessTools;
  37 import jdk.test.lib.process.OutputAnalyzer;
  38 
  39 public class TestQuotedLogOutputs {
  40 
  41     public static void main(String[] args) throws Exception {
  42         // Ensure log files can be specified with full path.
  43         // On windows, this means that the file name will contain
  44         // a colon ('C:\log.txt' for example), which is used to
  45         // separate -Xlog: options (-Xlog:tags:filename:decorators).
  46         // Try to log to a file in our current directory, using its absolute path.
  47         String baseName = "test file.log";
  48         Path filePath = Paths.get(baseName).toAbsolutePath();
  49         String fileName = filePath.toString();
  50         File file = filePath.toFile();
  51 
  52         // In case the file already exists, attempt to delete it before running the test
  53         file.delete();
  54 
  55         // Depending on if we're on Windows or not the quotation marks must be escaped,
  56         // otherwise they will be stripped from the command line arguments.
  57         String quote;


< prev index next >