test_formally_mark_some_tests_as_flaky.patch 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: Samuel Attard <[email protected]>
  3. Date: Wed, 8 Feb 2023 02:54:05 -0800
  4. Subject: test: formally mark some tests as flaky
  5. Instead of disabling the tests, flag them as flaky so they still run
  6. but don't cause CI failures on flakes.
  7. diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status
  8. index 79a953df7da64b7d7580e099a5cc5160e7842999..94616df356cab50c8ef4099e7863f5986deed377 100644
  9. --- a/test/parallel/parallel.status
  10. +++ b/test/parallel/parallel.status
  11. @@ -5,6 +5,16 @@ prefix parallel
  12. # sample-test : PASS,FLAKY
  13. [true] # This section applies to all platforms
  14. +# https://github.com/nodejs/node/pull/50327
  15. +# Currently there's no reliable way to test it.
  16. +test-diagnostics-channel-memory-leak: SKIP
  17. +test-inspector-multisession-ws: PASS, FLAKY
  18. +test-heapsnapshot-near-heap-limit-by-api-in-worker: PASS, FLAKY
  19. +test-heapsnapshot-near-heap-limit-worker: PASS, FLAKY
  20. +test-fetch: PASS, FLAKY
  21. +test-cluster-bind-privileged-port: PASS, FLAKY
  22. +test-cluster-shared-handle-bind-privileged-port: PASS, FLAKY
  23. +test-debugger-random-port-with-inspect-port: PASS, FLAKY
  24. # https://github.com/nodejs/node/issues/52273
  25. test-net-write-fully-async-hex-string: PASS, FLAKY
  26. # https://github.com/nodejs/node/issues/52273
  27. diff --git a/test/sequential/sequential.status b/test/sequential/sequential.status
  28. index a539649d5537376a6a2ac9a7a46051b8648f0cb1..a03c86b752772be7ae36fab31faeccf3b0ccff64 100644
  29. --- a/test/sequential/sequential.status
  30. +++ b/test/sequential/sequential.status
  31. @@ -7,6 +7,18 @@ prefix sequential
  32. [true] # This section applies to all platforms
  33. # https://github.com/nodejs/node/issues/27611#issuecomment-613100468
  34. test-cpu-prof-dir-worker: PASS, FLAKY
  35. +test-cpu-prof-dir-and-name: PASS, FLAKY
  36. +test-cpu-prof-drained: PASS, FLAKY
  37. +test-cpu-prof-default: PASS, FLAKY
  38. +test-cpu-prof-dir-absolute: PASS, FLAKY
  39. +test-cpu-prof-dir-relative: PASS, FLAKY
  40. +test-cpu-prof-exit: PASS, FLAKY
  41. +test-cpu-prof-kill: PASS, FLAKY
  42. +test-cpu-prof-name: PASS, FLAKY
  43. +test-cpu-prof-worker-argv: PASS, FLAKY
  44. +test-diagnostic-dir-cpu-prof: PASS, FLAKY
  45. +test-worker-prof: PASS, FLAKY
  46. +test-inspector-stop-profile-after-done: PASS, FLAKY
  47. # https://github.com/nodejs/node/issues/44898
  48. test-watch-mode: PASS, FLAKY
  49. test-watch-mode-inspect: PASS, FLAKY