aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-10-26 17:35:38 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-10-26 17:35:38 -0700
commitceced33a4962cc6eb83d6d27be884500733ce5c2 (patch)
tree295d080a673e9f42ceaed38a29241f676c95495f /test
parentb56b0f14a77cae6757c9f9fb46f54918125781f1 (diff)
parenteed7fd4c1c952d69daa9969c4c5662bb0785631e (diff)
Merge pull request #3962 from sreecha/skip_stress_tests
Skip running stress_tests on jenkins by run_tests.py
Diffstat (limited to 'test')
-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 49f3fbcc14..5d1419728e 100644
--- a/test/cpp/interop/stress_test.cc
+++ b/test/cpp/interop/stress_test.cc
@@ -186,14 +186,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;