/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4749938
* @summary Bug in the parsing IPv4 literal addresses
*/
public class textToNumericFormat {
"224.0.1.0",
"238.255.255.255",
"239.255.255.255" };
"238.255.255.2550",
"256.255.255.255",
"238.255.2550.255",
"238.2550.255.255",
"2380.255.255.255"};
try {
} catch (UnknownHostException e) {
// shouldn't have come here
}
}
try {
// shouldn't have come here
} catch (UnknownHostException e) {
// ignore
}
}
// if either goodList or badList is not empty, throw exception
("Good address not parsed: "+ goodList)
: "") +
("Bad Address parsed: "+ badList)
: ""));
}
}
}