#Easiest way to run subset of std tests?

1 messages · Page 1 of 1 (latest)

fallow totem
#

I want to run just the tests under std.math, for the native architecture, what's the easiest way to do that?
I used to use something like zig test lib/std/math.zig but I think that's stopped working? (I get "error: file exists in multiple modules" import errors)
I just tried zig build test-std -Dskip-release -Dtarget=native -Dtest-filter=math but this seems to have tried to run the tests for the full architecture matrix?

fallow totem
#

ah I think maybe I should've used -Dskip-non-native instead of -Dtarget=native...