git » libjio » commit 4b85598

tests/stress: Make the default number of operations smaller

author Alberto Bertogli
2009-09-25 02:05:11 UTC
committer Alberto Bertogli
2009-09-25 02:05:11 UTC
parent 7249b479c168022f1080463839123567d5cfc7f1

tests/stress: Make the default number of operations smaller

Now that we have more complex transactions, 500 is too slow for a default.
This patch makes it 100, and while at it reorders the --nproc option.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>

tests/stress/jiostress +4 -4

diff --git a/tests/stress/jiostress b/tests/stress/jiostress
index 859168b..bd3b883 100755
--- a/tests/stress/jiostress
+++ b/tests/stress/jiostress
@@ -618,17 +618,17 @@ def main():
 	usage = "Use: %prog [options] <file name> <file size in Mb>"
 	parser = OptionParser(usage = usage)
 	parser.add_option("-n", "--nops", dest = "nops", type = "int",
-		default = 500,
+		default = 100,
 		help = "number of operations (defaults to %default)")
+	parser.add_option("-p", "--nproc", dest = "nproc", type = "int",
+		default = 1,
+		help = "number of processes (defaults to %default)")
 	parser.add_option("", "--fi", dest = "use_fi",
 		action = "store_true", default = False,
 		help = "use fault injection (conflicts with --as)")
 	parser.add_option("", "--as", dest = "use_as",
 		action = "store_true", default = False,
 		help = "use J_LINGER + autosync (conflicts with --fi)")
-	parser.add_option("-p", "--nproc", dest = "nproc", type = "int",
-		default = 1,
-		help = "number of processes (defaults to %default)")
 	parser.add_option("", "--no-internal-lock",
 		dest = "use_internal_locks", action = "store_false",
 		default = True,