forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
edencommon: patch to increase test discovery timeout (NixOS#339781)
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
pkgs/development/libraries/edencommon/increase-test-discovery-timeout.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/eden/common/os/test/CMakeLists.txt b/eden/common/os/test/CMakeLists.txt | ||
index a9f71443f8..be1423c455 100644 | ||
--- a/eden/common/os/test/CMakeLists.txt | ||
+++ b/eden/common/os/test/CMakeLists.txt | ||
@@ -18,4 +18,4 @@ | ||
${LIBGMOCK_LIBRARIES} | ||
) | ||
|
||
-gtest_discover_tests(os_test) | ||
+gtest_discover_tests(os_test DISCOVERY_TIMEOUT 25) | ||
diff --git a/eden/common/utils/test/CMakeLists.txt b/eden/common/utils/test/CMakeLists.txt | ||
index 0cac73e569..ff08ecccb8 100644 | ||
--- a/eden/common/utils/test/CMakeLists.txt | ||
+++ b/eden/common/utils/test/CMakeLists.txt | ||
@@ -34,4 +34,4 @@ | ||
${LIBGMOCK_LIBRARIES} | ||
) | ||
|
||
-gtest_discover_tests(utils_test) | ||
+gtest_discover_tests(utils_test DISCOVERY_TIMEOUT 25) |