From: Luca Boccassi <luca.bocca...@microsoft.com> This test consistently times out on ppc64 builds. Disable it.
Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi <luca.bocca...@microsoft.com> --- It just times out, nothing useful in the verbose logs. Eg: https://ci.debian.net/data/autopkgtest/unstable/ppc64el/d/dpdk/11755163/log.gz app/test/meson.build | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index bd50818f82..803a87dd4e 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -215,7 +215,6 @@ fast_tests = [ ['hash_autotest', true], ['interrupt_autotest', true], ['ipfrag_autotest', false], - ['lcores_autotest', true], ['logs_autotest', true], ['lpm_autotest', true], ['lpm6_autotest', true], @@ -422,6 +421,11 @@ if dpdk_conf.has('RTE_CRYPTO_SCHEDULER') test_deps += 'crypto_scheduler' endif +# This test consistently times out on ppc64 +if arch_subdir != 'ppc' + fast_tests += [['lcores_autotest', true]] +endif + foreach d:test_deps def_lib = get_option('default_library') test_dep_objs += get_variable(def_lib + '_rte_' + d) -- 2.29.2