aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/stress_test.cc
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2015-10-26 10:59:17 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2015-10-26 11:01:11 -0700
commit117c8af8d327455e63edae275cfd7d5469fd2d19 (patch)
tree4492f5a6bfe11705df657b98a5ec1d53704801ef /test/cpp/interop/stress_test.cc
parent66bae6f4a79cd84bfbcddef1a9d13301b05002be (diff)
Skip running stress_tests on jenkins by run_tests.py (This will fix the
issue addressed by commit: e6cd0e70a9c8, the right way)
Diffstat (limited to 'test/cpp/interop/stress_test.cc')
-rw-r--r--test/cpp/interop/stress_test.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/cpp/interop/stress_test.cc b/test/cpp/interop/stress_test.cc
index a1f6780809..0340c8d9d4 100644
--- a/test/cpp/interop/stress_test.cc
+++ b/test/cpp/interop/stress_test.cc
@@ -187,14 +187,7 @@ int main(int argc, char** argv) {
// Parse test cases and weights
if (FLAGS_test_cases.length() == 0) {
gpr_log(GPR_INFO, "Not running tests. The 'test_cases' string is empty");
-
- // TODO(sreek): stress_tests is currently being run by run_tests.py in
- // jenkins. There does not seem to be a straightforward way to skip this.
- // So, for now, return 0 (i.e success) to keep jenkins build happy. Moreover
- // we don't want to run stress_tests (for now) in jenkins anyway.
- // Once we figure out a good way to skip this tests in run_tests.py, I will
- // change this to 'return 1'
- return 0;
+ return 1;
}
vector<pair<TestCaseType, int>> tests;