Skip to content

Commit 340f62e

Browse files
committed
mute alloc_trait tests
Signed-off-by: Jay Lee <[email protected]>
1 parent ad338bd commit 340f62e

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ matrix:
7272
install: true
7373
script:
7474
- cargo test --bench roundtrip
75-
- cargo test --features=alloc_trait --bench roundtrip
75+
# FIXME: Re-enable this when allocator API is stable.
76+
# - cargo test --features=alloc_trait --bench roundtrip
7677
- name: "x86_64-unknown-linux-musl"
7778
env: TARGET=x86_64-unknown-linux-musl NOBGT=1 NO_JEMALLOC_TESTS=1
7879

ci/run.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,9 @@ ${CARGO_CMD} test -vv --target "${TARGET}" \
133133
--manifest-path jemallocator-global/Cargo.toml \
134134
--features force_global_jemalloc
135135

136-
if [ "${TRAVIS_RUST_VERSION}" = "nightly" ]
137-
then
138-
# The Alloc trait is unstable:
139-
${CARGO_CMD} test -vv --target "${TARGET}" --features alloc_trait
140-
fi
136+
# FIXME: Re-enable following test when allocator API is stable again.
137+
# if [ "${TRAVIS_RUST_VERSION}" = "nightly" ]
138+
# then
139+
# # The Alloc trait is unstable:
140+
# ${CARGO_CMD} test -vv --target "${TARGET}" --features alloc_trait
141+
# fi

0 commit comments

Comments
 (0)