@@ -206,7 +206,7 @@ def test_robot_configure(tmp_path):
206206 outdir .mkdir ()
207207
208208 instance = TestInstance (
209- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
209+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
210210 )
211211 instance .testsuite .harness_config = {
212212 "robot_testsuite" : "/path/to/robot/test" ,
@@ -237,7 +237,7 @@ def test_robot_handle(tmp_path):
237237 outdir .mkdir ()
238238
239239 instance = TestInstance (
240- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
240+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
241241 )
242242
243243 handler = Robot ()
@@ -287,7 +287,7 @@ def test_robot_run_robot_test(tmp_path, caplog, exp_out, returncode, expected_st
287287 outdir .mkdir ()
288288
289289 instance = TestInstance (
290- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
290+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
291291 )
292292 instance .build_dir = "build_dir"
293293
@@ -341,7 +341,7 @@ def test_console_configure(tmp_path, type, num_patterns):
341341 outdir .mkdir ()
342342
343343 instance = TestInstance (
344- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
344+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
345345 )
346346 instance .testsuite .harness_config = {
347347 "type" : type ,
@@ -402,7 +402,7 @@ def test_console_handle(
402402 outdir .mkdir ()
403403
404404 instance = TestInstance (
405- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
405+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
406406 )
407407
408408 console = Console ()
@@ -464,7 +464,7 @@ def test_pytest__generate_parameters_for_hardware(tmp_path, pty_value, hardware_
464464 outdir .mkdir ()
465465
466466 instance = TestInstance (
467- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
467+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
468468 )
469469
470470 handler = mock .Mock ()
@@ -562,7 +562,7 @@ def test_pytest_run(tmp_path, caplog):
562562 outdir .mkdir ()
563563
564564 instance = TestInstance (
565- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
565+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
566566 )
567567 instance .handler = handler
568568
@@ -691,7 +691,7 @@ def test_test_handle(
691691 outdir .mkdir ()
692692
693693 instance = TestInstance (
694- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
694+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
695695 )
696696
697697 test_obj = Test ()
@@ -730,7 +730,7 @@ def gtest(tmp_path):
730730 outdir .mkdir ()
731731
732732 instance = TestInstance (
733- testsuite = mock_testsuite , platform = mock_platform , outdir = outdir
733+ testsuite = mock_testsuite , platform = mock_platform , toolchain = 'zephyr' , outdir = outdir
734734 )
735735
736736 harness = Gtest ()
0 commit comments