Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds benchmarks for nallocx, calloc, alloc, alloc_excess, ralloc, ralloc_excess #26

Merged
merged 15 commits into from
Nov 27, 2017
Merged
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ matrix:
after_success:
- travis-cargo --only nightly doc-upload

before_script:
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi

script:
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi
- cargo run --target $TARGET --manifest-path systest/Cargo.toml
- cargo build --target $TARGET
- cargo build --target $TARGET --features profiling
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ A Rust allocator backed by jemalloc

[lib]
test = false
bench = false

[workspace]
members = ["systest"]
Expand Down
Loading