Skip to content

Commit

Permalink
[manuf] Fix missing test tags for FT FPGA tests
Browse files Browse the repository at this point in the history
Commit fd9ba9d dropped some test coverage,
since the conditional unintentionally removes the default test tags if it
evaluates to False.

This commit fixes the issue and should fix the "Verify FPGA jobs" CI workflow.

Signed-off-by: Noah Moroze <noah@opentitan.org>
  • Loading branch information
nmoroze committed Dec 5, 2024
1 parent df426c3 commit 2829498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/device/silicon_creator/manuf/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ filegroup(
tags = [
"lc_test_locked0",
"manuf",
] + ["manual"] if config.get("offline", False) else [],
] + (["manual"] if config.get("offline", False) else []),
test_cmd = _FT_PROVISIONING_CMD_ARGS,
test_harness = _FT_PROVISIONING_HARNESS.format(sku),
),
Expand Down

0 comments on commit 2829498

Please sign in to comment.