X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Fautotest.py;h=b42f48879cc28f92757cc2257e557edbbd10d4c9;hb=e6cf7bee1c77a0f321cea3494a106bfa5de6f53c;hp=12997fdf0e201f57b7ea4bed05074817a905a48d;hpb=a9de470cc7c0649221e156fc5f30a2dbdfe7c166;p=dpdk.git diff --git a/app/test/autotest.py b/app/test/autotest.py index 12997fdf0e..b42f48879c 100644 --- a/app/test/autotest.py +++ b/app/test/autotest.py @@ -32,13 +32,13 @@ if len(sys.argv) > 3: else: test_whitelist = testlist -cmdline = "%s -c f -n 4" % (sys.argv[1]) +cmdline = "%s -c f" % (sys.argv[1]) print(cmdline) # how many workers to run tests with. FreeBSD doesn't support multiple primary # processes, so make it 1, otherwise make it 4. ignored for non-parallel tests -n_processes = 1 if "bsdapp" in target else 4 +n_processes = 1 if "bsd" in target else 4 runner = autotest_runner.AutotestRunner(cmdline, target, test_blacklist, test_whitelist, n_processes)