Migrate to new `cfg` attribute syntax`
This commit is contained in:
parent
ac37b913d9
commit
f1d975b6f1
|
@ -219,7 +219,7 @@ mod test {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[ignore(cfg(target_arch = "x86"))]
|
#[cfg_attr(target_arch = "x86", ignore)]
|
||||||
// FIXME #7158: (maybe?) currently failing on x86.
|
// FIXME #7158: (maybe?) currently failing on x86.
|
||||||
fn test_norm() {
|
fn test_norm() {
|
||||||
fn test(c: Complex64, ns: f64) {
|
fn test(c: Complex64, ns: f64) {
|
||||||
|
|
Loading…
Reference in New Issue