Export of internal Abseil changes
-- 1eb20c4802ccaa316ecebc237877210b77ac84f7 by Abseil Team <absl-team@google.com>: Use constraint_values to detect windows. This resolves ambiguous copts when cross compiling with LLVM on Windows. PiperOrigin-RevId: 305935379 -- 47c96948132a577b14642ad4c910052768c41d62 by Abseil Team <absl-team@google.com>: Add StrSplit conversion tests for the swisstable containers. PiperOrigin-RevId: 305747160 -- 0daea0f78b50d49520bd6e67d093cd87d057bb86 by Abseil Team <absl-team@google.com>: Typo fix: Removes duplicate word. PiperOrigin-RevId: 305502962 GitOrigin-RevId: 1eb20c4802ccaa316ecebc237877210b77ac84f7 Change-Id: I1bfa0beda0260027a22bc671344cc8b74315b77a
This commit is contained in:
parent
1112609635
commit
bf6166a635
5 changed files with 23 additions and 5 deletions
|
|
@ -29,6 +29,8 @@
|
|||
#include "gtest/gtest.h"
|
||||
#include "absl/base/dynamic_annotations.h" // for RunningOnValgrind
|
||||
#include "absl/base/macros.h"
|
||||
#include "absl/container/flat_hash_map.h"
|
||||
#include "absl/container/node_hash_map.h"
|
||||
#include "absl/strings/numbers.h"
|
||||
|
||||
namespace {
|
||||
|
|
@ -421,6 +423,18 @@ TEST(Splitter, ConversionOperator) {
|
|||
TestMapConversionOperator<std::multimap<std::string, std::string>>(splitter);
|
||||
TestMapConversionOperator<std::unordered_map<std::string, std::string>>(
|
||||
splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::node_hash_map<absl::string_view, absl::string_view>>(splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::node_hash_map<absl::string_view, std::string>>(splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::node_hash_map<std::string, absl::string_view>>(splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::flat_hash_map<absl::string_view, absl::string_view>>(splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::flat_hash_map<absl::string_view, std::string>>(splitter);
|
||||
TestMapConversionOperator<
|
||||
absl::flat_hash_map<std::string, absl::string_view>>(splitter);
|
||||
|
||||
// Tests conversion to std::pair
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue