test: print autotest categories
authorAnatoly Burakov <anatoly.burakov@intel.com>
Fri, 27 Jul 2018 09:40:14 +0000 (10:40 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 31 Jul 2018 14:35:19 +0000 (16:35 +0200)
Help visually identify parallel vs. non-parallel autotests.

Cc: stable@dpdk.org
Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
test/test/autotest_runner.py

index f6b669a..d9d5f7a 100644 (file)
@@ -341,6 +341,7 @@ class AutotestRunner:
             # make a note of tests start time
             self.start = time.time()
 
+            print("Parallel autotests:")
             # assign worker threads to run test groups
             for test_group in self.parallel_test_groups:
                 result = pool.apply_async(run_test_group,
@@ -367,6 +368,7 @@ class AutotestRunner:
                     # remove result from results list once we're done with it
                     results.remove(group_result)
 
+            print("Non-parallel autotests:")
             # run non_parallel tests. they are run one by one, synchronously
             for test_group in self.non_parallel_test_groups:
                 group_result = run_test_group(