diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-05-09 02:44:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 17:44:23 -0700 |
commit | 98b1e6a64e49bbec03dad679bcb716fd79dc13e1 (patch) | |
tree | 1364bf44d22ec1d0991e5f271ca0ecdc34c40d9a /test/binaryen.js/kitchen-sink.js | |
parent | f23bf9a4cd45b7ed03805f217f6c4f645a513822 (diff) | |
download | binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.gz binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.tar.bz2 binaryen-98b1e6a64e49bbec03dad679bcb716fd79dc13e1.zip |
Remove C API tracing (#2841)
This feature was very useful in the early days of the C API,
but has not shown usefuless for quite a while, and has a
significant maintenance burden, so it it's makes sense to
remove it now.
Diffstat (limited to 'test/binaryen.js/kitchen-sink.js')
-rw-r--r-- | test/binaryen.js/kitchen-sink.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/binaryen.js/kitchen-sink.js b/test/binaryen.js/kitchen-sink.js index ef0691f52..6db6f3720 100644 --- a/test/binaryen.js/kitchen-sink.js +++ b/test/binaryen.js/kitchen-sink.js @@ -897,14 +897,6 @@ function test_nonvalid() { module.dispose(); } -function test_tracing() { - binaryen.setAPITracing(1); - test_core(); - test_relooper(); - test_types(); - binaryen.setAPITracing(0); -} - function test_parsing() { var text; @@ -1019,8 +1011,6 @@ function test_expression_info() { module.dispose(); } -// Tracing must be first so it starts with a fresh set of interned types -test_tracing(); test_types(); test_features(); test_ids(); |