-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_with_params.rs
51 lines (43 loc) · 1.09 KB
/
test_with_params.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use hyperparameter::*;
use std::thread::{self, JoinHandle};
#[test]
fn test_with_params() {
with_params! {
set a.int = 1;
set a.float = 2.0;
set a.bool = true;
set a.str = "string".to_string();
with_params! {
get a_int = a.int or 0;
assert_eq!(1, a_int);
};
}
}
#[test]
fn test_with_params_multi_threads() {
with_params! {
set a.int = 1;
set a.float = 2.0;
set a.bool = true;
set a.str = "string".to_string();
frozen();
let mut workers: Vec<JoinHandle<()>> = Vec::new();
for _ in 0..10 {
let t = thread::spawn(||{
for i in 0..100000 {
with_params! {
get x = a.int or 0;
assert!(x == 1 );
with_params!{
set a.int = i%10;
};
};
}
});
workers.push(t);
}
for t in workers {
let _ = t.join();
}
}
}