Merge pull request #8678 from ctiller/fixxxx

Fix sanity
pull/8577/head^2
Craig Tiller 8 years ago committed by GitHub
commit b065b31c25
  1. 2
      Makefile
  2. 2
      src/cpp/common/version_cc.cc
  3. 13
      test/core/end2end/end2end_nosec_tests.c
  4. 51
      test/core/end2end/end2end_test_utils.c
  5. 13
      test/core/end2end/end2end_tests.c
  6. 6
      test/core/end2end/gen_build_yaml.py
  7. 2
      tools/run_tests/sources_and_headers.json
  8. 2
      vsprojects/vcxproj/test/end2end/tests/end2end_nosec_tests/end2end_nosec_tests.vcxproj
  9. 3
      vsprojects/vcxproj/test/end2end/tests/end2end_nosec_tests/end2end_nosec_tests.vcxproj.filters
  10. 2
      vsprojects/vcxproj/test/end2end/tests/end2end_tests/end2end_tests.vcxproj
  11. 3
      vsprojects/vcxproj/test/end2end/tests/end2end_tests/end2end_tests.vcxproj.filters

@ -6941,6 +6941,7 @@ endif
LIBEND2END_TESTS_SRC = \ LIBEND2END_TESTS_SRC = \
test/core/end2end/end2end_tests.c \ test/core/end2end/end2end_tests.c \
test/core/end2end/end2end_test_utils.c \
test/core/end2end/tests/bad_hostname.c \ test/core/end2end/tests/bad_hostname.c \
test/core/end2end/tests/binary_metadata.c \ test/core/end2end/tests/binary_metadata.c \
test/core/end2end/tests/call_creds.c \ test/core/end2end/tests/call_creds.c \
@ -7025,6 +7026,7 @@ endif
LIBEND2END_NOSEC_TESTS_SRC = \ LIBEND2END_NOSEC_TESTS_SRC = \
test/core/end2end/end2end_nosec_tests.c \ test/core/end2end/end2end_nosec_tests.c \
test/core/end2end/end2end_test_utils.c \
test/core/end2end/tests/bad_hostname.c \ test/core/end2end/tests/bad_hostname.c \
test/core/end2end/tests/binary_metadata.c \ test/core/end2end/tests/binary_metadata.c \
test/core/end2end/tests/cancel_after_accept.c \ test/core/end2end/tests/cancel_after_accept.c \

@ -37,5 +37,5 @@
#include <grpc++/grpc++.h> #include <grpc++/grpc++.h>
namespace grpc { namespace grpc {
std::string Version() { return "1.1.0-dev"; } grpc::string Version() { return "1.1.0-dev"; }
} }

@ -416,16 +416,3 @@ void grpc_end2end_tests(int argc, char **argv,
abort(); abort();
} }
} }
const char *get_host_override_string(const char *str,
grpc_end2end_test_config config) {
return (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER ? str
: NULL);
}
void validate_host_override_string(const char *pattern, const char *str,
grpc_end2end_test_config config) {
if (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER) {
GPR_ASSERT(0 == strcmp(str, pattern));
}
}

@ -0,0 +1,51 @@
/*
*
* Copyright 2015, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "test/core/end2end/end2end_tests.h"
#include <string.h>
#include <grpc/support/log.h>
const char *get_host_override_string(const char *str,
grpc_end2end_test_config config) {
return (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER ? str
: NULL);
}
void validate_host_override_string(const char *pattern, const char *str,
grpc_end2end_test_config config) {
if (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER) {
GPR_ASSERT(0 == strcmp(str, pattern));
}
}

@ -424,16 +424,3 @@ void grpc_end2end_tests(int argc, char **argv,
abort(); abort();
} }
} }
const char *get_host_override_string(const char *str,
grpc_end2end_test_config config) {
return (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER ? str
: NULL);
}
void validate_host_override_string(const char *pattern, const char *str,
grpc_end2end_test_config config) {
if (config.feature_mask & FEATURE_MASK_SUPPORTS_AUTHORITY_HEADER) {
GPR_ASSERT(0 == strcmp(str, pattern));
}
}

@ -190,7 +190,8 @@ def main():
'build': 'private', 'build': 'private',
'language': 'c', 'language': 'c',
'secure': True, 'secure': True,
'src': ['test/core/end2end/end2end_tests.c'] + [ 'src': ['test/core/end2end/end2end_tests.c',
'test/core/end2end/end2end_test_utils.c'] + [
'test/core/end2end/tests/%s.c' % t 'test/core/end2end/tests/%s.c' % t
for t in sorted(END2END_TESTS.keys())], for t in sorted(END2END_TESTS.keys())],
'headers': ['test/core/end2end/tests/cancel_test_helpers.h', 'headers': ['test/core/end2end/tests/cancel_test_helpers.h',
@ -204,7 +205,8 @@ def main():
'build': 'private', 'build': 'private',
'language': 'c', 'language': 'c',
'secure': False, 'secure': False,
'src': ['test/core/end2end/end2end_nosec_tests.c'] + [ 'src': ['test/core/end2end/end2end_nosec_tests.c',
'test/core/end2end/end2end_test_utils.c'] + [
'test/core/end2end/tests/%s.c' % t 'test/core/end2end/tests/%s.c' % t
for t in sorted(END2END_TESTS.keys()) for t in sorted(END2END_TESTS.keys())
if not END2END_TESTS[t].secure], if not END2END_TESTS[t].secure],

@ -6215,6 +6215,7 @@
"language": "c", "language": "c",
"name": "end2end_tests", "name": "end2end_tests",
"src": [ "src": [
"test/core/end2end/end2end_test_utils.c",
"test/core/end2end/end2end_tests.c", "test/core/end2end/end2end_tests.c",
"test/core/end2end/end2end_tests.h", "test/core/end2end/end2end_tests.h",
"test/core/end2end/tests/bad_hostname.c", "test/core/end2end/tests/bad_hostname.c",
@ -6283,6 +6284,7 @@
"name": "end2end_nosec_tests", "name": "end2end_nosec_tests",
"src": [ "src": [
"test/core/end2end/end2end_nosec_tests.c", "test/core/end2end/end2end_nosec_tests.c",
"test/core/end2end/end2end_test_utils.c",
"test/core/end2end/end2end_tests.h", "test/core/end2end/end2end_tests.h",
"test/core/end2end/tests/bad_hostname.c", "test/core/end2end/tests/bad_hostname.c",
"test/core/end2end/tests/binary_metadata.c", "test/core/end2end/tests/binary_metadata.c",

@ -153,6 +153,8 @@
<ItemGroup> <ItemGroup>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_nosec_tests.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_nosec_tests.c">
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_test_utils.c">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c">
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\binary_metadata.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\binary_metadata.c">

@ -4,6 +4,9 @@
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_nosec_tests.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_nosec_tests.c">
<Filter>test\core\end2end</Filter> <Filter>test\core\end2end</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_test_utils.c">
<Filter>test\core\end2end</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c">
<Filter>test\core\end2end\tests</Filter> <Filter>test\core\end2end\tests</Filter>
</ClCompile> </ClCompile>

@ -153,6 +153,8 @@
<ItemGroup> <ItemGroup>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_tests.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_tests.c">
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_test_utils.c">
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c">
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\binary_metadata.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\binary_metadata.c">

@ -4,6 +4,9 @@
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_tests.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_tests.c">
<Filter>test\core\end2end</Filter> <Filter>test\core\end2end</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\end2end_test_utils.c">
<Filter>test\core\end2end</Filter>
</ClCompile>
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c"> <ClCompile Include="$(SolutionDir)\..\test\core\end2end\tests\bad_hostname.c">
<Filter>test\core\end2end\tests</Filter> <Filter>test\core\end2end\tests</Filter>
</ClCompile> </ClCompile>

Loading…
Cancel
Save