From 7f6db12a461a5388b1b9765acec74138ce2817bc Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 5 Oct 2025 09:56:43 +0300 Subject: [PATCH] tools: remove hardcoded skip edge case for naked_attr_test.amd64.v on tcc in cmd/tools/vtest.v in favour of a `// vtest build: !tinyc` tag --- cmd/tools/vtest.v | 5 ----- vlib/v/slow_tests/assembly/naked_attr_test.amd64.v | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/cmd/tools/vtest.v b/cmd/tools/vtest.v index 6b1172563..653925b83 100644 --- a/cmd/tools/vtest.v +++ b/cmd/tools/vtest.v @@ -145,11 +145,6 @@ fn (mut ctx Context) should_test(path string, backend string) ShouldTestStatus { if path.ends_with('onecontext_test.v') { return .skip } - $if tinyc { - if path.ends_with('naked_attr_test.amd64.v') { - return .skip - } - } if path.ends_with('_test.v') { return ctx.should_test_when_it_contains_matching_fns(path, backend) } diff --git a/vlib/v/slow_tests/assembly/naked_attr_test.amd64.v b/vlib/v/slow_tests/assembly/naked_attr_test.amd64.v index 8364dae72..51fed7e8c 100644 --- a/vlib/v/slow_tests/assembly/naked_attr_test.amd64.v +++ b/vlib/v/slow_tests/assembly/naked_attr_test.amd64.v @@ -1,3 +1,4 @@ +// vtest build: !tinyc @[_naked] fn naked_fn() { asm amd64 { -- 2.39.5