We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7604f0e commit 37c571cCopy full SHA for 37c571c
.travis.yml
@@ -8,7 +8,7 @@ matrix:
8
- rust: nightly
9
name: "allocator api"
10
script:
11
- - cargo test --features allocator-api
+ - cargo test --features 'allocator-api global'
12
13
name: "wasm"
14
install: rustup target add wasm32-unknown-unknown
tests/global.rs
@@ -1,4 +1,4 @@
1
-#![cfg(feature = "allocator-api")]
+#![cfg(all(feature = "allocator-api", feature = "global"))]
2
#![feature(global_allocator)]
3
4
extern crate dlmalloc;
0 commit comments