2015-08-17 21:16:41 +00:00
|
|
|
use core::sync::atomic::Ordering::SeqCst;
|
2019-12-07 04:18:12 +00:00
|
|
|
use core::sync::atomic::*;
|
2014-06-28 20:57:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bool_() {
|
|
|
|
let a = AtomicBool::new(false);
|
|
|
|
assert_eq!(a.compare_and_swap(false, true, SeqCst), false);
|
|
|
|
assert_eq!(a.compare_and_swap(false, true, SeqCst), true);
|
|
|
|
|
|
|
|
a.store(false, SeqCst);
|
|
|
|
assert_eq!(a.compare_and_swap(false, true, SeqCst), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bool_and() {
|
|
|
|
let a = AtomicBool::new(true);
|
2017-04-07 15:28:55 +00:00
|
|
|
assert_eq!(a.fetch_and(false, SeqCst), true);
|
2019-12-07 04:18:12 +00:00
|
|
|
assert_eq!(a.load(SeqCst), false);
|
2014-06-28 20:57:36 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 15:28:55 +00:00
|
|
|
#[test]
|
|
|
|
fn bool_nand() {
|
|
|
|
let a = AtomicBool::new(false);
|
|
|
|
assert_eq!(a.fetch_nand(false, SeqCst), false);
|
|
|
|
assert_eq!(a.load(SeqCst), true);
|
|
|
|
assert_eq!(a.fetch_nand(false, SeqCst), true);
|
|
|
|
assert_eq!(a.load(SeqCst), true);
|
|
|
|
assert_eq!(a.fetch_nand(true, SeqCst), true);
|
|
|
|
assert_eq!(a.load(SeqCst), false);
|
|
|
|
assert_eq!(a.fetch_nand(true, SeqCst), false);
|
|
|
|
assert_eq!(a.load(SeqCst), true);
|
|
|
|
}
|
|
|
|
|
2014-06-28 20:57:36 +00:00
|
|
|
#[test]
|
|
|
|
fn uint_and() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicUsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_and(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 & 0x137f);
|
|
|
|
}
|
|
|
|
|
2018-02-09 18:19:52 +00:00
|
|
|
#[test]
|
|
|
|
fn uint_nand() {
|
|
|
|
let x = AtomicUsize::new(0xf731);
|
|
|
|
assert_eq!(x.fetch_nand(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), !(0xf731 & 0x137f));
|
|
|
|
}
|
|
|
|
|
2014-06-28 20:57:36 +00:00
|
|
|
#[test]
|
|
|
|
fn uint_or() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicUsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_or(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 | 0x137f);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uint_xor() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicUsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_xor(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 ^ 0x137f);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn int_and() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicIsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_and(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 & 0x137f);
|
|
|
|
}
|
|
|
|
|
2018-02-09 18:19:52 +00:00
|
|
|
#[test]
|
|
|
|
fn int_nand() {
|
|
|
|
let x = AtomicIsize::new(0xf731);
|
|
|
|
assert_eq!(x.fetch_nand(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), !(0xf731 & 0x137f));
|
|
|
|
}
|
|
|
|
|
2014-06-28 20:57:36 +00:00
|
|
|
#[test]
|
|
|
|
fn int_or() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicIsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_or(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 | 0x137f);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn int_xor() {
|
2015-01-10 21:42:48 +00:00
|
|
|
let x = AtomicIsize::new(0xf731);
|
2014-06-28 20:57:36 +00:00
|
|
|
assert_eq!(x.fetch_xor(0x137f, SeqCst), 0xf731);
|
|
|
|
assert_eq!(x.load(SeqCst), 0xf731 ^ 0x137f);
|
|
|
|
}
|
|
|
|
|
2015-05-27 08:18:36 +00:00
|
|
|
static S_FALSE: AtomicBool = AtomicBool::new(false);
|
|
|
|
static S_TRUE: AtomicBool = AtomicBool::new(true);
|
2019-12-07 04:18:12 +00:00
|
|
|
static S_INT: AtomicIsize = AtomicIsize::new(0);
|
2015-05-27 08:18:36 +00:00
|
|
|
static S_UINT: AtomicUsize = AtomicUsize::new(0);
|
2014-06-28 20:57:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn static_init() {
|
2018-04-09 18:40:53 +00:00
|
|
|
// Note that we're not really testing the mutability here but it's important
|
|
|
|
// on Android at the moment (#49775)
|
|
|
|
assert!(!S_FALSE.swap(true, SeqCst));
|
|
|
|
assert!(S_TRUE.swap(false, SeqCst));
|
|
|
|
assert!(S_INT.fetch_add(1, SeqCst) == 0);
|
|
|
|
assert!(S_UINT.fetch_add(1, SeqCst) == 0);
|
2014-06-28 20:57:36 +00:00
|
|
|
}
|