From 64d4fcd8cb601f75a7293112722a149f2d282421 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Mon, 30 Dec 2024 14:31:56 +0100 Subject: [PATCH] tests/subsys/lorawan/frag_decoder: Change random seed These tests are quite sensitive to the exact random sequence. After a change of the native_sim entropy generation 2 of them started failing. Let's set a random seed which avoids the failure. Signed-off-by: Alberto Escolar Piedras --- tests/subsys/lorawan/frag_decoder/testcase.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/subsys/lorawan/frag_decoder/testcase.yaml b/tests/subsys/lorawan/frag_decoder/testcase.yaml index 7182fd3cfe6..d5ea2f8d714 100644 --- a/tests/subsys/lorawan/frag_decoder/testcase.yaml +++ b/tests/subsys/lorawan/frag_decoder/testcase.yaml @@ -7,6 +7,7 @@ tests: - native_sim extra_configs: - CONFIG_LORAWAN_FRAG_TRANSPORT_DECODER_SEMTECH=y + - CONFIG_NATIVE_EXTRA_CMDLINE_ARGS="seed=1" lorawan.frag_decoder.lowmem.high_redundancy: platform_allow: - native_sim @@ -19,3 +20,4 @@ tests: extra_configs: - CONFIG_LORAWAN_FRAG_TRANSPORT_DECODER_LOWMEM=y - CONFIG_LORAWAN_FRAG_TRANSPORT_MAX_REDUNDANCY=10 + - CONFIG_NATIVE_EXTRA_CMDLINE_ARGS="seed=1"