summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-10-17 21:50:25 -0700
committerRich Trott <rtrott@gmail.com>2017-10-17 23:10:20 -0700
commit9be3d99b2b94d8a08b5a36efb06f3a6fd196805a (patch)
tree77a6cd98b9fc4e72134ddde0fbfd2606af39f91c
parent978629ca1240b9f2038390c7e960f3d226daa4e8 (diff)
downloadandroid-node-v8-9be3d99b2b94d8a08b5a36efb06f3a6fd196805a.tar.gz
android-node-v8-9be3d99b2b94d8a08b5a36efb06f3a6fd196805a.tar.bz2
android-node-v8-9be3d99b2b94d8a08b5a36efb06f3a6fd196805a.zip
test: fix inspector tests
The inspector tests should not be in the parallel directory as they likely all (or certainly almost all) use static ports, so port collisions will happen. This moves them all to sequential. We can move them back on a case-by-case basis. They were run sequentially when they were in the inspector directory which they were only moved from very recently. PR-URL: https://github.com/nodejs/node/pull/16281 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
-rw-r--r--test/parallel/parallel.status4
-rw-r--r--test/sequential/sequential.status4
-rw-r--r--test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js (renamed from test/parallel/test-inspector-async-hook-setup-at-inspect-brk.js)0
-rw-r--r--test/sequential/test-inspector-async-hook-setup-at-signal.js (renamed from test/parallel/test-inspector-async-hook-setup-at-signal.js)0
-rw-r--r--test/sequential/test-inspector-async-hook-teardown-at-debug-end.js (renamed from test/parallel/test-inspector-async-hook-teardown-at-debug-end.js)0
-rw-r--r--test/sequential/test-inspector-async-stack-traces-promise-then.js (renamed from test/parallel/test-inspector-async-stack-traces-promise-then.js)0
-rw-r--r--test/sequential/test-inspector-async-stack-traces-set-interval.js (renamed from test/parallel/test-inspector-async-stack-traces-set-interval.js)0
-rw-r--r--test/sequential/test-inspector-bindings.js (renamed from test/parallel/test-inspector-bindings.js)0
-rw-r--r--test/sequential/test-inspector-break-e.js (renamed from test/parallel/test-inspector-break-e.js)0
-rw-r--r--test/sequential/test-inspector-break-when-eval.js (renamed from test/parallel/test-inspector-break-when-eval.js)0
-rw-r--r--test/sequential/test-inspector-contexts.js (renamed from test/parallel/test-inspector-contexts.js)0
-rw-r--r--test/sequential/test-inspector-debug-brk-flag.js (renamed from test/parallel/test-inspector-debug-brk-flag.js)0
-rw-r--r--test/sequential/test-inspector-debug-end.js (renamed from test/parallel/test-inspector-debug-end.js)0
-rw-r--r--test/sequential/test-inspector-exception.js (renamed from test/parallel/test-inspector-exception.js)0
-rw-r--r--test/sequential/test-inspector-invalid-args.js (renamed from test/parallel/test-inspector-invalid-args.js)0
-rw-r--r--test/sequential/test-inspector-ip-detection.js (renamed from test/parallel/test-inspector-ip-detection.js)0
-rw-r--r--test/sequential/test-inspector-module.js (renamed from test/parallel/test-inspector-module.js)0
-rw-r--r--test/sequential/test-inspector-not-blocked-on-idle.js (renamed from test/parallel/test-inspector-not-blocked-on-idle.js)0
-rw-r--r--test/sequential/test-inspector-open.js (renamed from test/parallel/test-inspector-open.js)0
-rw-r--r--test/sequential/test-inspector-port-zero-cluster.js (renamed from test/parallel/test-inspector-port-zero-cluster.js)0
-rw-r--r--test/sequential/test-inspector-port-zero.js (renamed from test/parallel/test-inspector-port-zero.js)0
-rw-r--r--test/sequential/test-inspector-scriptparsed-context.js (renamed from test/parallel/test-inspector-scriptparsed-context.js)0
-rw-r--r--test/sequential/test-inspector-stop-profile-after-done.js (renamed from test/parallel/test-inspector-stop-profile-after-done.js)0
-rw-r--r--test/sequential/test-inspector-stops-no-file.js (renamed from test/parallel/test-inspector-stops-no-file.js)0
-rw-r--r--test/sequential/test-inspector.js (renamed from test/parallel/test-inspector.js)0
25 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status
index 1817501c98..2297aad9c8 100644
--- a/test/parallel/parallel.status
+++ b/test/parallel/parallel.status
@@ -7,9 +7,6 @@ prefix parallel
[true] # This section applies to all platforms
[$system==win32]
-test-inspector-bindings : PASS, FLAKY
-test-inspector-debug-end : PASS, FLAKY
-test-inspector-stop-profile-after-done: PASS, FLAKY
[$system==linux]
@@ -23,4 +20,3 @@ test-npm-install: PASS,FLAKY
[$system==freebsd]
[$system==aix]
-test-inspector-stop-profile-after-done: PASS, FLAKY
diff --git a/test/sequential/sequential.status b/test/sequential/sequential.status
index 8467864395..86095d16c3 100644
--- a/test/sequential/sequential.status
+++ b/test/sequential/sequential.status
@@ -7,6 +7,9 @@ prefix sequential
[true] # This section applies to all platforms
[$system==win32]
+test-inspector-bindings : PASS, FLAKY
+test-inspector-debug-end : PASS, FLAKY
+test-inspector-stop-profile-after-done: PASS, FLAKY
[$system==linux]
@@ -17,3 +20,4 @@ prefix sequential
[$system==freebsd]
[$system==aix]
+test-inspector-stop-profile-after-done: PASS, FLAKY
diff --git a/test/parallel/test-inspector-async-hook-setup-at-inspect-brk.js b/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js
index 980e9e4d46..980e9e4d46 100644
--- a/test/parallel/test-inspector-async-hook-setup-at-inspect-brk.js
+++ b/test/sequential/test-inspector-async-hook-setup-at-inspect-brk.js
diff --git a/test/parallel/test-inspector-async-hook-setup-at-signal.js b/test/sequential/test-inspector-async-hook-setup-at-signal.js
index 96e8b28a7a..96e8b28a7a 100644
--- a/test/parallel/test-inspector-async-hook-setup-at-signal.js
+++ b/test/sequential/test-inspector-async-hook-setup-at-signal.js
diff --git a/test/parallel/test-inspector-async-hook-teardown-at-debug-end.js b/test/sequential/test-inspector-async-hook-teardown-at-debug-end.js
index 9084efdd41..9084efdd41 100644
--- a/test/parallel/test-inspector-async-hook-teardown-at-debug-end.js
+++ b/test/sequential/test-inspector-async-hook-teardown-at-debug-end.js
diff --git a/test/parallel/test-inspector-async-stack-traces-promise-then.js b/test/sequential/test-inspector-async-stack-traces-promise-then.js
index a321855b5e..a321855b5e 100644
--- a/test/parallel/test-inspector-async-stack-traces-promise-then.js
+++ b/test/sequential/test-inspector-async-stack-traces-promise-then.js
diff --git a/test/parallel/test-inspector-async-stack-traces-set-interval.js b/test/sequential/test-inspector-async-stack-traces-set-interval.js
index e778bfc802..e778bfc802 100644
--- a/test/parallel/test-inspector-async-stack-traces-set-interval.js
+++ b/test/sequential/test-inspector-async-stack-traces-set-interval.js
diff --git a/test/parallel/test-inspector-bindings.js b/test/sequential/test-inspector-bindings.js
index b2140c11a3..b2140c11a3 100644
--- a/test/parallel/test-inspector-bindings.js
+++ b/test/sequential/test-inspector-bindings.js
diff --git a/test/parallel/test-inspector-break-e.js b/test/sequential/test-inspector-break-e.js
index 1a8f8ca50d..1a8f8ca50d 100644
--- a/test/parallel/test-inspector-break-e.js
+++ b/test/sequential/test-inspector-break-e.js
diff --git a/test/parallel/test-inspector-break-when-eval.js b/test/sequential/test-inspector-break-when-eval.js
index e5d01cb189..e5d01cb189 100644
--- a/test/parallel/test-inspector-break-when-eval.js
+++ b/test/sequential/test-inspector-break-when-eval.js
diff --git a/test/parallel/test-inspector-contexts.js b/test/sequential/test-inspector-contexts.js
index 54acfab0d5..54acfab0d5 100644
--- a/test/parallel/test-inspector-contexts.js
+++ b/test/sequential/test-inspector-contexts.js
diff --git a/test/parallel/test-inspector-debug-brk-flag.js b/test/sequential/test-inspector-debug-brk-flag.js
index 235e7043d8..235e7043d8 100644
--- a/test/parallel/test-inspector-debug-brk-flag.js
+++ b/test/sequential/test-inspector-debug-brk-flag.js
diff --git a/test/parallel/test-inspector-debug-end.js b/test/sequential/test-inspector-debug-end.js
index effef9f233..effef9f233 100644
--- a/test/parallel/test-inspector-debug-end.js
+++ b/test/sequential/test-inspector-debug-end.js
diff --git a/test/parallel/test-inspector-exception.js b/test/sequential/test-inspector-exception.js
index 743742f50f..743742f50f 100644
--- a/test/parallel/test-inspector-exception.js
+++ b/test/sequential/test-inspector-exception.js
diff --git a/test/parallel/test-inspector-invalid-args.js b/test/sequential/test-inspector-invalid-args.js
index ae051b92ce..ae051b92ce 100644
--- a/test/parallel/test-inspector-invalid-args.js
+++ b/test/sequential/test-inspector-invalid-args.js
diff --git a/test/parallel/test-inspector-ip-detection.js b/test/sequential/test-inspector-ip-detection.js
index f7dee4494d..f7dee4494d 100644
--- a/test/parallel/test-inspector-ip-detection.js
+++ b/test/sequential/test-inspector-ip-detection.js
diff --git a/test/parallel/test-inspector-module.js b/test/sequential/test-inspector-module.js
index c0dc71efbf..c0dc71efbf 100644
--- a/test/parallel/test-inspector-module.js
+++ b/test/sequential/test-inspector-module.js
diff --git a/test/parallel/test-inspector-not-blocked-on-idle.js b/test/sequential/test-inspector-not-blocked-on-idle.js
index 68e4eaaa57..68e4eaaa57 100644
--- a/test/parallel/test-inspector-not-blocked-on-idle.js
+++ b/test/sequential/test-inspector-not-blocked-on-idle.js
diff --git a/test/parallel/test-inspector-open.js b/test/sequential/test-inspector-open.js
index a0d2eaf1f3..a0d2eaf1f3 100644
--- a/test/parallel/test-inspector-open.js
+++ b/test/sequential/test-inspector-open.js
diff --git a/test/parallel/test-inspector-port-zero-cluster.js b/test/sequential/test-inspector-port-zero-cluster.js
index f64e05f314..f64e05f314 100644
--- a/test/parallel/test-inspector-port-zero-cluster.js
+++ b/test/sequential/test-inspector-port-zero-cluster.js
diff --git a/test/parallel/test-inspector-port-zero.js b/test/sequential/test-inspector-port-zero.js
index a3eb08e5fb..a3eb08e5fb 100644
--- a/test/parallel/test-inspector-port-zero.js
+++ b/test/sequential/test-inspector-port-zero.js
diff --git a/test/parallel/test-inspector-scriptparsed-context.js b/test/sequential/test-inspector-scriptparsed-context.js
index f295d737da..f295d737da 100644
--- a/test/parallel/test-inspector-scriptparsed-context.js
+++ b/test/sequential/test-inspector-scriptparsed-context.js
diff --git a/test/parallel/test-inspector-stop-profile-after-done.js b/test/sequential/test-inspector-stop-profile-after-done.js
index 4762bc5239..4762bc5239 100644
--- a/test/parallel/test-inspector-stop-profile-after-done.js
+++ b/test/sequential/test-inspector-stop-profile-after-done.js
diff --git a/test/parallel/test-inspector-stops-no-file.js b/test/sequential/test-inspector-stops-no-file.js
index 772063b279..772063b279 100644
--- a/test/parallel/test-inspector-stops-no-file.js
+++ b/test/sequential/test-inspector-stops-no-file.js
diff --git a/test/parallel/test-inspector.js b/test/sequential/test-inspector.js
index 992a12e902..992a12e902 100644
--- a/test/parallel/test-inspector.js
+++ b/test/sequential/test-inspector.js