X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2Fautotest_data.py;h=302d6374c16fe1ad5783dd3b796afc38d5fa228c;hb=7df485eb3d56fbe5e6fcd160d33ca971bc3d3572;hp=a4f2882e3ea31d0637dd65eefd90cb7d7fdaa3fe;hpb=48083b4d67c08f97c613b0df09d8945375aa7661;p=dpdk.git diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py index a4f2882e3e..302d6374c1 100644 --- a/app/test/autotest_data.py +++ b/app/test/autotest_data.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2010-2014 Intel Corporation @@ -8,12 +9,6 @@ from autotest_test_funcs import * # groups of tests that can be run in parallel # the grouping has been found largely empirically parallel_test_list = [ - { - "Name": "Cycles autotest", - "Command": "cycles_autotest", - "Func": default_autotest, - "Report": None, - }, { "Name": "Timer autotest", "Command": "timer_autotest", @@ -62,6 +57,12 @@ parallel_test_list = [ "Func": rwlock_autotest, "Report": None, }, + { + "Name": "Lcores autotest", + "Command": "lcores_autotest", + "Func": default_autotest, + "Report": None, + }, { "Name": "Logs autotest", "Command": "logs_autotest", @@ -110,6 +111,54 @@ parallel_test_list = [ "Func": default_autotest, "Report": None, }, + { + "Name": "RIB autotest", + "Command": "rib_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "RIB slow autotest", + "Command": "rib_slow_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "RIB6 autotest", + "Command": "rib6_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "RIB6 slow autotest", + "Command": "rib6_slow_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "FIB autotest", + "Command": "fib_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "FIB slow autotest", + "Command": "fib_slow_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "FIB6 autotest", + "Command": "fib6_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "FIB6 slow autotest", + "Command": "fib6_slow_autotest", + "Func": default_autotest, + "Report": None, + }, { "Name": "Memcpy autotest", "Command": "memcpy_autotest", @@ -128,12 +177,6 @@ parallel_test_list = [ "Func": default_autotest, "Report": None, }, - { - "Name": "Alarm autotest", - "Command": "alarm_autotest", - "Func": default_autotest, - "Report": None, - }, { "Name": "Malloc autotest", "Command": "malloc_autotest", @@ -290,12 +333,6 @@ parallel_test_list = [ "Func": default_autotest, "Report": None, }, - { - "Name": "Sleep delay", - "Command": "delay_us_sleep_autotest", - "Func": default_autotest, - "Report": None, - }, { "Name": "Rawdev autotest", "Command": "rawdev_autotest", @@ -356,6 +393,12 @@ parallel_test_list = [ "Func": default_autotest, "Report": None, }, + { + "Name": "Bitops test", + "Command": "bitops_autotest", + "Func": default_autotest, + "Report": None, + }, { "Name": "Hash multiwriter autotest", "Command": "hash_multiwriter_autotest", @@ -524,6 +567,12 @@ parallel_test_list = [ "Func": default_autotest, "Report": None, }, + { + "Name": "Checksum autotest", + "Command": "cksum_autotest", + "Func": default_autotest, + "Report": None, + }, # #Please always keep all dump tests at the end and together! # @@ -616,14 +665,20 @@ non_parallel_test_list = [ "Report": None, }, { - "Name": "Hash read-write concurrency autotest", - "Command": "hash_readwrite_autotest", + "Name": "Hash read-write concurrency functional autotest", + "Command": "hash_readwrite_func_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "Hash read-write concurrency perf autotest", + "Command": "hash_readwrite_perf_autotest", "Func": default_autotest, "Report": None, }, { - "Name": "Hash read-write lock-free concurrency autotest", - "Command": "hash_readwrite_lf_autotest", + "Name": "Hash read-write lock-free concurrency perf autotest", + "Command": "hash_readwrite_lf_perf_autotest", "Func": default_autotest, "Report": None, }, @@ -688,6 +743,18 @@ non_parallel_test_list = [ "Func": default_autotest, "Report": None, }, + { + "Name": "FIB perf autotest", + "Command": "fib_perf_autotest", + "Func": default_autotest, + "Report": None, + }, + { + "Name": "FIB6 perf autotest", + "Command": "fib6_perf_autotest", + "Func": default_autotest, + "Report": None, + }, { "Name": "Efd perf autotest", "Command": "efd_perf_autotest",