Unverified Commit b0ae7858 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

nodejs*: skip some flaky tests (#416650)

parents b539b2bf cfeaf14c
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -428,6 +428,9 @@ let
                "test-debugger-random-port-with-inspect-port"
                "test-debugger-launch"
                "test-debugger-pid"

                # Those are annoyingly flaky, but not enough to be marked as such upstream.
                "test-wasi"
              ]
              ++ lib.optionals (stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64) [
                # These tests fail on x86_64-darwin (even without sandbox).
@@ -435,10 +438,13 @@ let
                "test-fs-readv"
                "test-fs-readv-sync"
                "test-vm-memleak"

                # Those are annoyingly flaky, but not enough to be marked as such upstream.
                "test-tick-processor-arguments"
                "test-set-raw-mode-reset-signal"
              ]
              ++ lib.optional (
                stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64 && majorVersion == "20"
              ) "test-tick-processor-arguments" # flaky
              # Those are annoyingly flaky, but not enough to be marked as such upstream.
              ++ lib.optional (majorVersion == "22") "test-child-process-stdout-flush-exit"
            )
          }"
        ];