HBASE-14345 Consolidate printUsage in IntegrationTestLoadAndVerify (Reid Chan)
This commit is contained in:
parent
091a17e3c9
commit
3c3457c6c0
|
@ -549,9 +549,11 @@ public void cleanUpCluster() throws Exception {
|
|||
getTestingUtil(getConf()).deleteTable(htd.getTableName());
|
||||
}
|
||||
|
||||
public void usage() {
|
||||
System.err.println(this.getClass().getSimpleName()
|
||||
+ " [-Doptions] <load|verify|loadAndVerify|search>");
|
||||
@Override
|
||||
public void printUsage() {
|
||||
printUsage(this.getClass().getSimpleName() + " <options>"
|
||||
+ " [-Doptions] <load|verify|loadAndVerify|search>", "Options", "");
|
||||
System.err.println("");
|
||||
System.err.println(" Loads a table with row dependencies and verifies the dependency chains");
|
||||
System.err.println("Options");
|
||||
System.err.println(" -Dloadmapper.table=<name> Table to write/verify (default autogen)");
|
||||
|
@ -571,7 +573,7 @@ public void cleanUpCluster() throws Exception {
|
|||
|
||||
String[] args = cmd.getArgs();
|
||||
if (args == null || args.length < 1) {
|
||||
usage();
|
||||
printUsage();
|
||||
throw new RuntimeException("Incorrect Number of args.");
|
||||
}
|
||||
toRun = args[0];
|
||||
|
@ -608,7 +610,7 @@ public void cleanUpCluster() throws Exception {
|
|||
}
|
||||
} else {
|
||||
System.err.println("Invalid argument " + toRun);
|
||||
usage();
|
||||
printUsage();
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -347,7 +347,7 @@ public class IntegrationTestWithCellVisibilityLoadAndVerify extends IntegrationT
|
|||
}
|
||||
|
||||
@Override
|
||||
public void usage() {
|
||||
public void printUsage() {
|
||||
System.err.println(this.getClass().getSimpleName() + " -u usera,userb [-Doptions]");
|
||||
System.err.println(" Loads a table with cell visibilities and verifies with Authorizations");
|
||||
System.err.println("Options");
|
||||
|
@ -386,7 +386,7 @@ public class IntegrationTestWithCellVisibilityLoadAndVerify extends IntegrationT
|
|||
protected void processOptions(CommandLine cmd) {
|
||||
List args = cmd.getArgList();
|
||||
if (args.size() > 0) {
|
||||
usage();
|
||||
printUsage();
|
||||
throw new RuntimeException("No args expected.");
|
||||
}
|
||||
// We always want loadAndVerify action
|
||||
|
|
Loading…
Reference in New Issue