ACCUMULO-2275 Fix options for LotsOfTablets
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/613da730 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/613da730 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/613da730 Branch: refs/heads/1.6.0-SNAPSHOT Commit: 613da730acebe19dc6d278a1a4ef0bd010683078 Parents: 6716227 Author: Josh Elser <els...@apache.org> Authored: Wed Jan 29 15:59:12 2014 -0500 Committer: Josh Elser <els...@apache.org> Committed: Wed Jan 29 15:59:12 2014 -0500 ---------------------------------------------------------------------- test/system/auto/simple/tablets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/613da730/test/system/auto/simple/tablets.py ---------------------------------------------------------------------- diff --git a/test/system/auto/simple/tablets.py b/test/system/auto/simple/tablets.py index e3e952d..ecf40f7 100755 --- a/test/system/auto/simple/tablets.py +++ b/test/system/auto/simple/tablets.py @@ -20,7 +20,7 @@ import unittest import time from subprocess import PIPE -from TestUtils import TestUtilsMixin +from TestUtils import ROOT, ROOT_PASSWORD, TestUtilsMixin log = logging.getLogger('test.auto') @@ -42,11 +42,11 @@ class LotsOfTablets(TestUtilsMixin, unittest.TestCase): # initialize the database handle = self.runClassOn(self.masterHost(), 'org.apache.accumulo.test.CreateTestTable', - [str(N)]) + ['-count', str(N), '-u', ROOT, '-p', ROOT_PASSWORD]) self.waitForStop(handle, WAIT) handle = self.runClassOn(self.masterHost(), 'org.apache.accumulo.test.CreateTestTable', - ['-readonly', str(N)]) + ['-readonly', '-count', str(N), '-u', ROOT, '-p', ROOT_PASSWORD]) self.waitForStop(handle, WAIT) def suite():