Skip to content
This repository was archived by the owner on Mar 2, 2021. It is now read-only.

Commit d3a735f

Browse files
authored
Merge pull request #11 from fitzgen/fix-cached-uaf
Fix potential use-after-free bugs introduced by `Cached<T>`
2 parents e457eeb + c0017ed commit d3a735f

File tree

14 files changed

+388
-51
lines changed

14 files changed

+388
-51
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ matrix:
2929
- name: "build (nightly)"
3030
rust: nightly
3131
script: INSTALL=1 ./build.sh
32-
- name: "test (firefox)"
32+
- name: "headless browser tests (firefox)"
3333
rust: stable
3434
addons:
3535
firefox: latest
3636
script: wasm-pack test --firefox --headless
37-
- name: "test (chrome)"
37+
- name: "headless browser tests (chrome)"
3838
rust: stable
3939
addons:
4040
chrome: stable
4141
script: wasm-pack test --chrome --headless
42+
- name: "native tests"
43+
rust: stable
44+
install: echo "no install"
45+
script: cargo test --all

0 commit comments

Comments
 (0)