File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
hadoop-common-project/hadoop-common
src/test/java/org/apache/hadoop/ha Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -477,6 +477,9 @@ Release 2.5.0 - UNRELEASED
477477 HADOOP-10674. Improve PureJavaCrc32 performance and use java.util.zip.CRC32
478478 for Java 7 and above. (szetszwo)
479479
480+ HADOOP-10754. Reenable several HA ZooKeeper-related tests on Windows.
481+ (cnauroth)
482+
480483 OPTIMIZATIONS
481484
482485 BUG FIXES
Original file line number Diff line number Diff line change 2020
2121import static org .junit .Assert .assertFalse ;
2222import static org .junit .Assert .assertTrue ;
23- import static org .junit .Assume .assumeTrue ;
2423
2524import java .util .Collections ;
2625import java .util .UUID ;
3029import org .apache .hadoop .ha .ActiveStandbyElector .ActiveStandbyElectorCallback ;
3130import org .apache .hadoop .ha .ActiveStandbyElector .State ;
3231import org .apache .hadoop .util .ZKUtil .ZKAuthInfo ;
33- import org .apache .hadoop .util .Shell ;
3432import org .apache .log4j .Level ;
3533import org .apache .zookeeper .ZooDefs .Ids ;
3634import org .apache .zookeeper .server .ZooKeeperServer ;
@@ -62,8 +60,6 @@ public class TestActiveStandbyElectorRealZK extends ClientBaseWithFixes {
6260
6361 @ Override
6462 public void setUp () throws Exception {
65- // skip tests on Windows until after resolution of ZooKeeper client bug
66- assumeTrue (!Shell .WINDOWS );
6763 super .setUp ();
6864
6965 zkServer = getServer (serverFactory );
Original file line number Diff line number Diff line change 1717 */
1818package org .apache .hadoop .ha ;
1919
20- import static org .junit .Assume .assumeTrue ;
21-
2220import java .util .Random ;
2321
2422
2523import org .apache .hadoop .conf .Configuration ;
2624import org .apache .hadoop .fs .CommonConfigurationKeys ;
27- import org .apache .hadoop .util .Shell ;
2825import org .apache .hadoop .util .Time ;
2926import org .junit .After ;
3027import org .junit .Before ;
@@ -49,8 +46,6 @@ public class TestZKFailoverControllerStress extends ClientBaseWithFixes {
4946
5047 @ Before
5148 public void setupConfAndServices () throws Exception {
52- // skip tests on Windows until after resolution of ZooKeeper client bug
53- assumeTrue (!Shell .WINDOWS );
5449 conf = new Configuration ();
5550 conf .set (ZKFailoverController .ZK_QUORUM_KEY , hostPort );
5651 this .cluster = new MiniZKFCCluster (conf , getServer (serverFactory ));
You can’t perform that action at this time.
0 commit comments