diff options
author | Mark D. Roth <roth@google.com> | 2017-04-19 13:28:24 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-04-19 13:28:24 -0700 |
commit | 0c0b89a88ba6544e42cca43913ed65dea64bff3a (patch) | |
tree | 5103c74188c122883ce10e967ac7e79c73d41c2f /tools | |
parent | e300670153d3c7cf62660c49c90cbfc6a63f3c0c (diff) |
Change hash table to use linear probing and add unit test.
Also add some missing rules in test/core/slice/BUILD.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/run_tests/generated/sources_and_headers.json | 17 | ||||
-rw-r--r-- | tools/run_tests/generated/tests.json | 22 |
2 files changed, 39 insertions, 0 deletions
diff --git a/tools/run_tests/generated/sources_and_headers.json b/tools/run_tests/generated/sources_and_headers.json index aa4869e1c8..9635dbec83 100644 --- a/tools/run_tests/generated/sources_and_headers.json +++ b/tools/run_tests/generated/sources_and_headers.json @@ -1988,6 +1988,23 @@ "headers": [], "is_filegroup": false, "language": "c", + "name": "slice_hash_table_test", + "src": [ + "test/core/slice/slice_hash_table_test.c" + ], + "third_party": false, + "type": "target" + }, + { + "deps": [ + "gpr", + "gpr_test_util", + "grpc", + "grpc_test_util" + ], + "headers": [], + "is_filegroup": false, + "language": "c", "name": "slice_string_helpers_test", "src": [ "test/core/slice/slice_string_helpers_test.c" diff --git a/tools/run_tests/generated/tests.json b/tools/run_tests/generated/tests.json index 6338ea7012..eb8fb20d7d 100644 --- a/tools/run_tests/generated/tests.json +++ b/tools/run_tests/generated/tests.json @@ -2085,6 +2085,28 @@ "flaky": false, "gtest": false, "language": "c", + "name": "slice_hash_table_test", + "platforms": [ + "linux", + "mac", + "posix", + "windows" + ] + }, + { + "args": [], + "ci_platforms": [ + "linux", + "mac", + "posix", + "windows" + ], + "cpu_cost": 1.0, + "exclude_configs": [], + "exclude_iomgrs": [], + "flaky": false, + "gtest": false, + "language": "c", "name": "slice_string_helpers_test", "platforms": [ "linux", |