Skip to content

Commit 3c533aa

Browse files
authored
Arm backend: Fix run_vkml_emulation_layer tests (#14107)
Signed-off-by: Erik Lundell <[email protected]>
1 parent 53b4cb9 commit 3c533aa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

backends/arm/test/ops/test_add.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ def test_add_tensor_u85_INT_2(test_data: input_t2):
209209

210210
@common.parametrize("test_data", filtered_test_data)
211211
@common.SkipIfNoModelConverter
212+
@pytest.mark.xfail(reason="'Failed to load VKML extensions' error in ci.")
212213
def test_add_tensor_vgf_FP(test_data: input_t1):
213214
pipeline = VgfPipeline[input_t1](
214215
Add(),
@@ -226,6 +227,7 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
226227

227228
@common.parametrize("test_data", filtered_test_data)
228229
@common.SkipIfNoModelConverter
230+
@pytest.mark.xfail(reason="'Failed to load VKML extensions' error in ci.")
229231
def test_add_tensor_vgf_INT(test_data: input_t1):
230232
pipeline = VgfPipeline[input_t1](
231233
Add(),

backends/arm/test/runner_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def run_vkml_emulation_layer(
251251
with open(pte_path, "wb") as f:
252252
f.write(executorch_program_manager.buffer)
253253

254-
cmd_line = [elf_path, "-model_path", pte_path]
254+
cmd_line = [str(elf_path), "-model_path", pte_path]
255255
result = _run_cmd(cmd_line)
256256

257257
result_stdout = result.stdout.decode() # noqa: F841

0 commit comments

Comments
 (0)