HADOOP-11916. TestStringUtils#testLowerAndUpperStrings failed on MAC due to a JVM bug. Contributed by Ming Ma.

This commit is contained in:
Tsuyoshi Ozawa 2015-05-05 12:39:24 +09:00
parent 551615fa13
commit 338e88a19e
2 changed files with 7 additions and 0 deletions

View File

@ -596,6 +596,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-11900. Add failIfNoTests=false to hadoop-build-tools pom. (gera)
HADOOP-11916. TestStringUtils#testLowerAndUpperStrings failed on MAC
due to a JVM bug. (Ming Ma via ozawa)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -37,6 +37,7 @@
import org.apache.hadoop.test.UnitTestcaseTimeLimit;
import org.apache.hadoop.util.StringUtils.TraditionalBinaryPrefix;
import org.junit.Assume;
import org.junit.Test;
public class TestStringUtils extends UnitTestcaseTimeLimit {
@ -416,6 +417,9 @@ public void testGetUniqueNonEmptyTrimmedStrings (){
@Test
public void testLowerAndUpperStrings() {
// Due to java bug http://bugs.java.com/bugdatabase/view_bug.do?bug_id=8047340,
// The test will fail with Turkish locality on Mac OS.
Assume.assumeTrue(Shell.LINUX);
Locale defaultLocale = Locale.getDefault();
try {
Locale.setDefault(new Locale("tr", "TR"));