master
pavel-mukhanov 5 years ago
parent e08fe8f6e0
commit c8d9f6e56f
  1. 24
      tests/test_db.rs

@ -22,8 +22,8 @@ mod util;
use libc::size_t; use libc::size_t;
use rocksdb::{DBVector, Error, IteratorMode, Options, WriteBatch, DB}; use rocksdb::{DBVector, Error, IteratorMode, Options, WriteBatch, DB};
use util::DBPath;
use std::thread; use std::thread;
use util::DBPath;
#[test] #[test]
fn test_db_vector() { fn test_db_vector() {
@ -180,15 +180,25 @@ fn sync_snapshot_test() {
// Unsafe here is safe, because `handler.join()` is called at the end of the // Unsafe here is safe, because `handler.join()` is called at the end of the
// method to ensure that snapshot will not outlive database. // method to ensure that snapshot will not outlive database.
let handler_1 = unsafe { let handler_1 = unsafe {
thread::Builder::new().spawn_unchecked(|| { thread::Builder::new()
assert_eq!(snapshot.get(b"k1").unwrap().unwrap().to_utf8().unwrap(), "v1"); .spawn_unchecked(|| {
}).unwrap() assert_eq!(
snapshot.get(b"k1").unwrap().unwrap().to_utf8().unwrap(),
"v1"
);
})
.unwrap()
}; };
let handler_2 = unsafe { let handler_2 = unsafe {
thread::Builder::new().spawn_unchecked(|| { thread::Builder::new()
assert_eq!(snapshot.get(b"k2").unwrap().unwrap().to_utf8().unwrap(), "v2"); .spawn_unchecked(|| {
}).unwrap() assert_eq!(
snapshot.get(b"k2").unwrap().unwrap().to_utf8().unwrap(),
"v2"
);
})
.unwrap()
}; };
handler_1.join().unwrap(); handler_1.join().unwrap();

Loading…
Cancel
Save