diff options
author | Abseil Team <absl-team@google.com> | 2020-07-13 13:22:02 -0700 |
---|---|---|
committer | vslashg <gfalcon@google.com> | 2020-07-15 14:12:16 -0400 |
commit | f624790b7f76ab92fed5ae966abb99a0d455c96f (patch) | |
tree | d1550e3e5b58a3b0c0c0c9a69134e71da8d3f22c /absl | |
parent | 55c04eb9203a93db1c0816adddf3182b45da5384 (diff) |
Export of internal Abseil changes
--
4fc38390e66394e51ef4637ca0778f929017b4c8 by Gennadiy Rozental <rogeeff@google.com>:
Internal Change
PiperOrigin-RevId: 321020681
--
880d1c1cb7590e7265e21afe32edde473ef830d4 by Derek Mauro <dmauro@google.com>:
Decrease number of threads in thread_identity_test to hopefully
prevent test timeouts
PiperOrigin-RevId: 321019403
GitOrigin-RevId: 4fc38390e66394e51ef4637ca0778f929017b4c8
Change-Id: Id8175bae6e490277d663d76fff9c06353b8c7f05
Diffstat (limited to 'absl')
-rw-r--r-- | absl/base/internal/thread_identity_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/base/internal/thread_identity_test.cc b/absl/base/internal/thread_identity_test.cc index 624d5b96..46a6f743 100644 --- a/absl/base/internal/thread_identity_test.cc +++ b/absl/base/internal/thread_identity_test.cc @@ -75,7 +75,7 @@ TEST(ThreadIdentityTest, BasicIdentityWorksThreaded) { // - If a thread implementation chooses to recycle threads, that // correct re-initialization occurs. static const int kNumLoops = 3; - static const int kNumThreads = 400; + static const int kNumThreads = 32; for (int iter = 0; iter < kNumLoops; iter++) { std::vector<std::thread> threads; for (int i = 0; i < kNumThreads; ++i) { |