edencommon: skip flaky test on darwin (#369477)

authored by Emily and committed by GitHub 60d28a09 692fb9cd

+18
+18
pkgs/by-name/ed/edencommon/package.nix
··· 72 72 73 73 doCheck = true; 74 74 75 + checkPhase = '' 76 + runHook preCheck 77 + 78 + # Skip flaky test on darwin 79 + ctest -j $NIX_BUILD_CORES --output-on-failure ${ 80 + lib.optionalString stdenv.hostPlatform.isDarwin ( 81 + lib.escapeShellArgs [ 82 + "--exclude-regex" 83 + (lib.concatMapStringsSep "|" (test: "^${lib.escapeRegex test}$") [ 84 + "ProcessInfoCache.addFromMultipleThreads" 85 + ]) 86 + ] 87 + ) 88 + } 89 + 90 + runHook postCheck 91 + ''; 92 + 75 93 postPatch = '' 76 94 # The CMake build requires the FBThrift Python support even though 77 95 # it’s not used, presumably because of the relevant code having