@@ -61,7 +61,6 @@ fn uint_xor() {
61
61
62
62
#[ test]
63
63
#[ cfg( any( not( target_arch = "arm" ) , target_os = "linux" ) ) ] // Missing intrinsic in compiler-builtins
64
- #[ cfg_attr( miri, ignore) ] // FIXME: Miri does not support atomic_min
65
64
fn uint_min ( ) {
66
65
let x = AtomicUsize :: new ( 0xf731 ) ;
67
66
assert_eq ! ( x. fetch_min( 0x137f , SeqCst ) , 0xf731 ) ;
@@ -72,7 +71,6 @@ fn uint_min() {
72
71
73
72
#[ test]
74
73
#[ cfg( any( not( target_arch = "arm" ) , target_os = "linux" ) ) ] // Missing intrinsic in compiler-builtins
75
- #[ cfg_attr( miri, ignore) ] // FIXME: Miri does not support atomic_max
76
74
fn uint_max ( ) {
77
75
let x = AtomicUsize :: new ( 0x137f ) ;
78
76
assert_eq ! ( x. fetch_max( 0xf731 , SeqCst ) , 0x137f ) ;
@@ -111,7 +109,6 @@ fn int_xor() {
111
109
112
110
#[ test]
113
111
#[ cfg( any( not( target_arch = "arm" ) , target_os = "linux" ) ) ] // Missing intrinsic in compiler-builtins
114
- #[ cfg_attr( miri, ignore) ] // FIXME: Miri does not support atomic_min
115
112
fn int_min ( ) {
116
113
let x = AtomicIsize :: new ( 0xf731 ) ;
117
114
assert_eq ! ( x. fetch_min( 0x137f , SeqCst ) , 0xf731 ) ;
@@ -122,7 +119,6 @@ fn int_min() {
122
119
123
120
#[ test]
124
121
#[ cfg( any( not( target_arch = "arm" ) , target_os = "linux" ) ) ] // Missing intrinsic in compiler-builtins
125
- #[ cfg_attr( miri, ignore) ] // FIXME: Miri does not support atomic_max
126
122
fn int_max ( ) {
127
123
let x = AtomicIsize :: new ( 0x137f ) ;
128
124
assert_eq ! ( x. fetch_max( 0xf731 , SeqCst ) , 0x137f ) ;
0 commit comments