Skip to content
Snippets Groups Projects
Commit b09c9eb6 authored by Amos Shi's avatar Amos Shi
Browse files

8333398: Uncomment the commented test in...

8333398: Uncomment the commented test in test/jdk/java/util/jar/JarFile/mrjar/MultiReleaseJarAPI.java

Backport-of: d230b30353f59135287436b09949b80e9fd73a93
parent c281c1cd
No related branches found
No related tags found
No related merge requests found
/* /*
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -101,15 +101,12 @@ public class MultiReleaseJarAPI { ...@@ -101,15 +101,12 @@ public class MultiReleaseJarAPI {
testCustomMultiReleaseValue("true", true); testCustomMultiReleaseValue("true", true);
testCustomMultiReleaseValue("true\r\nOther: value", true); testCustomMultiReleaseValue("true\r\nOther: value", true);
testCustomMultiReleaseValue("true\nOther: value", true); testCustomMultiReleaseValue("true\nOther: value", true);
// JDK-8200530: '\r' support in Manifest/Attributes will be addressed separately testCustomMultiReleaseValue("true\rOther: value", true);
// testCustomMultiReleaseValue("true\rOther: value", true);
testCustomMultiReleaseValue("false", false); testCustomMultiReleaseValue("false", false);
testCustomMultiReleaseValue(" true", false); testCustomMultiReleaseValue(" true", false);
testCustomMultiReleaseValue("true ", false); testCustomMultiReleaseValue("true ", false);
testCustomMultiReleaseValue("true\n true", false); testCustomMultiReleaseValue("true\n true", false);
// JDK-8200530: '\r' support in Manifest/Attributes will be addressed separately
testCustomMultiReleaseValue("true\r true", false); testCustomMultiReleaseValue("true\r true", false);
testCustomMultiReleaseValue("true\r\n true", false); testCustomMultiReleaseValue("true\r\n true", false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment