From 604f721ef8fc376821f8b6e24acaf7db6eb491a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Mon, 13 Apr 2026 11:01:05 +0200 Subject: [PATCH] Actually retry the flaky unit tests In 237489caf I mistakenly put the environment variables controlling the retry wrapper in a separate never used environment. --- tests/isc/meson.build | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/isc/meson.build b/tests/isc/meson.build index 0029ae6130..81955d759d 100644 --- a/tests/isc/meson.build +++ b/tests/isc/meson.build @@ -91,13 +91,12 @@ foreach unit : isc_test ) suites = ['isc', 'cmocka'] - env = environment() timeout = 300 if unit in flaky_isc_test suites += 'flaky' # Pass FLAKY and TIMEOUT to the test wrapper so it can retry appropriately - env.set('FLAKY', '1') - env.set('TIMEOUT', timeout.to_string()) + test_env.set('FLAKY', '1') + test_env.set('TIMEOUT', timeout.to_string()) endif test( unit,