summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGlen Keane <glenkeane.94@gmail.com>2018-02-24 22:38:04 +0000
committerGlen Keane <glenkeane.94@gmail.com>2018-03-01 16:44:43 +0000
commit30fd3d25dfa0cb759da77e9725e6cec4af1415b9 (patch)
treeb33fbb597af2dfc3081acadd10942d2c2d7f3d94 /test
parent38eb0fa7372052433520ea2e1575072892bc5eec (diff)
downloadandroid-node-v8-30fd3d25dfa0cb759da77e9725e6cec4af1415b9.tar.gz
android-node-v8-30fd3d25dfa0cb759da77e9725e6cec4af1415b9.tar.bz2
android-node-v8-30fd3d25dfa0cb759da77e9725e6cec4af1415b9.zip
src: Remove lttng support.
This cleans up and removes lttng support completely. Recent discussion on a PR to deprecate lttng suggested that we remove it completely pending feedback from the TSC. This should be considered a non breaking change, as a recent PR reveals that compiling with this system has been broken for nearly two years. Refs: https://github.com/nodejs/node/issues/18971 Refs: https://github.com/nodejs/node/pull/18975 Refs: https://github.com/nodejs/node/pull/18945 PR-URL: https://github.com/nodejs/node/pull/18982 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jackson Tian <shyvo1987@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/common/index.js9
-rw-r--r--test/common/index.mjs9
2 files changed, 0 insertions, 18 deletions
diff --git a/test/common/index.js b/test/common/index.js
index 10fd637af9..ff1dc0ce26 100644
--- a/test/common/index.js
+++ b/test/common/index.js
@@ -334,15 +334,6 @@ if (global.COUNTER_NET_SERVER_CONNECTION) {
knownGlobals.push(COUNTER_HTTP_CLIENT_RESPONSE);
}
-if (global.LTTNG_HTTP_SERVER_RESPONSE) {
- knownGlobals.push(LTTNG_HTTP_SERVER_RESPONSE);
- knownGlobals.push(LTTNG_HTTP_SERVER_REQUEST);
- knownGlobals.push(LTTNG_HTTP_CLIENT_RESPONSE);
- knownGlobals.push(LTTNG_HTTP_CLIENT_REQUEST);
- knownGlobals.push(LTTNG_NET_STREAM_END);
- knownGlobals.push(LTTNG_NET_SERVER_CONNECTION);
-}
-
if (global.ArrayBuffer) {
knownGlobals.push(ArrayBuffer);
knownGlobals.push(Int8Array);
diff --git a/test/common/index.mjs b/test/common/index.mjs
index 6d6fe4997b..52cbd76363 100644
--- a/test/common/index.mjs
+++ b/test/common/index.mjs
@@ -50,15 +50,6 @@ export function leakedGlobals() {
knownGlobals.push(COUNTER_HTTP_CLIENT_RESPONSE);
}
- if (global.LTTNG_HTTP_SERVER_RESPONSE) {
- knownGlobals.push(LTTNG_HTTP_SERVER_RESPONSE);
- knownGlobals.push(LTTNG_HTTP_SERVER_REQUEST);
- knownGlobals.push(LTTNG_HTTP_CLIENT_RESPONSE);
- knownGlobals.push(LTTNG_HTTP_CLIENT_REQUEST);
- knownGlobals.push(LTTNG_NET_STREAM_END);
- knownGlobals.push(LTTNG_NET_SERVER_CONNECTION);
- }
-
if (global.ArrayBuffer) {
knownGlobals.push(ArrayBuffer);
knownGlobals.push(Int8Array);