Merge pull request #3688 from murgatroid99/run_tests_tracing_fix

Used the proper GRPC_TRACE value in run_tests.py
pull/3796/merge
Michael Lumish 9 years ago
commit deea05bfcc
  1. 2
      src/csharp/Grpc.Core.Tests/PInvokeTest.cs
  2. 2
      tools/run_tests/run_tests.py

@ -60,7 +60,7 @@ namespace Grpc.Core.Tests
public void CompletionQueueCreateDestroyBenchmark()
{
BenchmarkUtil.RunBenchmark(
100000, 1000000,
10, 10,
() =>
{
CompletionQueueSafeHandle cq = CompletionQueueSafeHandle.Create();

@ -579,7 +579,7 @@ run_configs = set(_CONFIGS[cfg]
build_configs = set(cfg.build_config for cfg in run_configs)
if args.travis:
_FORCE_ENVIRON_FOR_WRAPPERS = {'GRPC_TRACE': 'surface,batch'}
_FORCE_ENVIRON_FOR_WRAPPERS = {'GRPC_TRACE': 'api'}
languages = set(_LANGUAGES[l]
for l in itertools.chain.from_iterable(

Loading…
Cancel
Save