mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 07:09:20 +08:00
Disable benches by default
This commit is contained in:
parent
8ddacbb27c
commit
0edc91e8ef
@ -56,6 +56,7 @@ series = ["vtab"]
|
||||
# check for invalid query.
|
||||
extra_check = []
|
||||
modern_sqlite = ["libsqlite3-sys/bundled_bindings"]
|
||||
unstable = []
|
||||
|
||||
[dependencies]
|
||||
time = "0.1.0"
|
||||
|
@ -1,4 +1,7 @@
|
||||
#![feature(test)]
|
||||
#![cfg_attr(feature = "unstable", feature(test))]
|
||||
|
||||
#[cfg(feature = "unstable")]
|
||||
mod bench {
|
||||
extern crate test;
|
||||
|
||||
use rusqlite::Connection;
|
||||
@ -18,3 +21,4 @@ fn bench_cache(b: &mut Bencher) {
|
||||
let sql = "SELECT 1, 'test', 3.14 UNION SELECT 2, 'exp', 2.71";
|
||||
b.iter(|| db.prepare_cached(sql).unwrap());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user