diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-05-18 07:29:04 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-05-18 07:29:04 -0700 |
commit | aa51f63da3686c5a36e473046e53eb0e3f5afa99 (patch) | |
tree | 3e9bb6bbffbc9b536f83049bd660a196b1f716e1 /tools | |
parent | deb8c3e987f8e5777363ff4bd1396f9e6192250f (diff) | |
parent | 0b405d54d496acc331f1511353b26e9f9a0e4598 (diff) |
Merge pull request #6463 from dgquintas/fix_compression_interop
Fixed compression interop and re-enable for C++.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index e813473421..edbdf05e2a 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -82,10 +82,10 @@ class CXXLanguage: return {} def unimplemented_test_cases(self): - return _SKIP_ADVANCED + _SKIP_COMPRESSION + return _SKIP_ADVANCED def unimplemented_test_cases_server(self): - return _SKIP_ADVANCED + _SKIP_COMPRESSION + return _SKIP_ADVANCED def __str__(self): return 'c++' |