solana/runtime
Greg Fitzgerald 878a842611
Move append_vec bench to the crate with append_vec (#3650)
* Move append_vec bench to the crate with append_vec

* Use black_box to tell the compiler not to optimize away test data

```
pub fn black_box<T>(dummy: T) -> T {
    unsafe {
        let ret = std::ptr::read_volatile(&dummy);
        std::mem::forget(dummy);
        ret
    }
}
```

* Revert "Use black_box to tell the compiler not to optimize away test data"

This reverts commit 5610b8ee957f1d8bf6e270e392859e8b23b1e472.

* Use black_box to tell the compiler not to optimize away test data

* Create bench directories
2019-04-06 07:18:56 -06:00
..
benches Move append_vec bench to the crate with append_vec (#3650) 2019-04-06 07:18:56 -06:00
src test for debit of TX fees on full process_transaction() (#3643) 2019-04-05 16:55:58 -07:00
.gitignore Put accounts test data files in target directory 2019-03-04 10:17:02 -08:00
Cargo.toml Bump hashbrown to 0.2.0 2019-04-02 16:37:21 -06:00