-
Notifications
You must be signed in to change notification settings - Fork 7
Allow #[cfg] after #[test] #141
Copy link
Copy link
Closed
Labels
A-libtest2Area: libtest implemented on top of the new harnessArea: libtest implemented on top of the new harnessC-bugCategory: Things not working as expectedCategory: Things not working as expectedE-help-wantedCall for participation: Help is requested to fix this issue.Call for participation: Help is requested to fix this issue.
Description
#[test]
#[cfg(windows)]
fn test() {}should work just as well as
#[cfg(windows)]
#[test]
fn test() {}#140 might take this a step further
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-libtest2Area: libtest implemented on top of the new harnessArea: libtest implemented on top of the new harnessC-bugCategory: Things not working as expectedCategory: Things not working as expectedE-help-wantedCall for participation: Help is requested to fix this issue.Call for participation: Help is requested to fix this issue.