Skip to content

Commit 7f6db12

Browse files
committed
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
1 parent 3176e7a commit 7f6db12

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

‎cmd/tools/vtest.v‎

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,11 +145,6 @@ fn (mut ctx Context) should_test(path string, backend string) ShouldTestStatus {
145145
if path.ends_with('onecontext_test.v') {
146146
return .skip
147147
}
148-
$if tinyc {
149-
if path.ends_with('naked_attr_test.amd64.v') {
150-
return .skip
151-
}
152-
}
153148
if path.ends_with('_test.v') {
154149
return ctx.should_test_when_it_contains_matching_fns(path, backend)
155150
}

‎vlib/v/slow_tests/assembly/naked_attr_test.amd64.v‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// vtest build: !tinyc
12
@[_naked]
23
fn naked_fn() {
34
asm amd64 {

0 commit comments

Comments
 (0)