diff options
author | Chad Austin <chad@imvu.com> | 2013-05-02 16:05:57 -0700 |
---|---|---|
committer | Chad Austin <chad@imvu.com> | 2013-05-02 18:56:27 -0700 |
commit | 8237fb35bcfb721eefb9c1608856b36a6adb852e (patch) | |
tree | 7ff8876ece2bb4df75169878df23efcc906574a9 | |
parent | 2d628d429053984a3a463a9746c2b042f31e4361 (diff) |
Oops, fix a test leak.
-rwxr-xr-x | tests/embind/build_benchmark | 2 | ||||
-rwxr-xr-x | tests/embind/embind.test.js | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/tests/embind/build_benchmark b/tests/embind/build_benchmark index f878a2d4..6faad18b 100755 --- a/tests/embind/build_benchmark +++ b/tests/embind/build_benchmark @@ -1,2 +1,2 @@ #!/bin/bash -EMCC_LLVM_TARGET=le32-unknown-nacl ~/projects/emscripten/emcc --minify 0 --bind --pre-js embind.benchmark.js -O2 --shell-file shell.html -o embind_benchmark.html embind_benchmark.cpp +EMCC_LLVM_TARGET=le32-unknown-nacl ~/projects/emscripten/emcc --minify 0 --bind --post-js embind.benchmark.js -O2 --shell-file shell.html -o embind_benchmark.html embind_benchmark.cpp diff --git a/tests/embind/embind.test.js b/tests/embind/embind.test.js index 69f933fa..52b2cad8 100755 --- a/tests/embind/embind.test.js +++ b/tests/embind/embind.test.js @@ -1580,6 +1580,8 @@ module({ q: 4, s: "foo", }); + + impl.delete(); }); }); |