Fix the error reported by tools/run_tests/check_sources_and_headers.py

pull/3868/head
Sree Kuchibhotla 10 years ago
parent 41b2143dcb
commit 119062428f
  1. 1
      build.yaml
  2. 3
      test/cpp/interop/stress_interop_client.cc
  3. 2
      tools/run_tests/sources_and_headers.json
  4. 1
      vsprojects/vcxproj/test/stress_test/stress_test.vcxproj
  5. 3
      vsprojects/vcxproj/test/stress_test/stress_test.vcxproj.filters

@ -2101,6 +2101,7 @@ targets:
build: test
language: c++
headers:
- test/cpp/interop/client_helper.h
- test/cpp/interop/interop_client.h
- test/cpp/interop/stress_interop_client.h
src:

@ -31,6 +31,8 @@
*is % allowed in string
*/
#include "test/cpp/interop/stress_interop_client.h"
#include <memory>
#include <string>
#include <vector>
@ -38,7 +40,6 @@
#include <grpc++/create_channel.h>
#include "test/cpp/interop/interop_client.h"
#include "test/cpp/interop/stress_interop_client.h"
namespace grpc {
namespace testing {

@ -1665,6 +1665,7 @@
"grpc_test_util"
],
"headers": [
"test/cpp/interop/client_helper.h",
"test/cpp/interop/interop_client.h",
"test/cpp/interop/stress_interop_client.h",
"test/proto/empty.grpc.pb.h",
@ -1677,6 +1678,7 @@
"language": "c++",
"name": "stress_test",
"src": [
"test/cpp/interop/client_helper.h",
"test/cpp/interop/interop_client.cc",
"test/cpp/interop/interop_client.h",
"test/cpp/interop/stress_interop_client.cc",

@ -145,6 +145,7 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\test\cpp\interop\client_helper.h" />
<ClInclude Include="..\..\..\..\test\cpp\interop\interop_client.h" />
<ClInclude Include="..\..\..\..\test\cpp\interop\stress_interop_client.h" />
</ItemGroup>

@ -21,6 +21,9 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\..\test\cpp\interop\client_helper.h">
<Filter>test\cpp\interop</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\test\cpp\interop\interop_client.h">
<Filter>test\cpp\interop</Filter>
</ClInclude>

Loading…
Cancel
Save