-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
A-libtest2Area: libtest implemented on top of the new harnessArea: libtest implemented on top of the new harnessC-questionUncertainty is involvedUncertainty is involved
Description
An idea I've toyed with is
#[test]
#[cfg(windows)]
fn test() {
}being turned into
#[test]
#[cfg(windows)]
fn test() {
}
#[test]
#[cfg(not(windows))]
fn test(ctx: TestContext) {
ctx.sklip()?;
}(#48 makes some reference to this)
This would let you see what coverage you are missing when you run tests on one platform.
Metadata
Metadata
Assignees
Labels
A-libtest2Area: libtest implemented on top of the new harnessArea: libtest implemented on top of the new harnessC-questionUncertainty is involvedUncertainty is involved