blob: 195544200a0f0ba3f836933d66abad982bbc63ff [file] [log] [blame]
Alexander Polcync44c16e2017-03-14 17:44:21 -07001#!/bin/bash
Jan Tattermusch7897ae92017-06-07 22:57:36 +02002# Copyright 2015 gRPC authors.
Alexander Polcync44c16e2017-03-14 17:44:21 -07003#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
Alexander Polcync44c16e2017-03-14 17:44:21 -07007#
Jan Tattermusch7897ae92017-06-07 22:57:36 +02008# http://www.apache.org/licenses/LICENSE-2.0
Alexander Polcync44c16e2017-03-14 17:44:21 -07009#
Jan Tattermusch7897ae92017-06-07 22:57:36 +020010# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Alexander Polcync44c16e2017-03-14 17:44:21 -070015
16set -ex
17
18# change to grpc repo root
Mehrdad Afshari4fc13172017-06-27 17:18:58 -070019cd "$(dirname "$0")/../../.."
Alexander Polcync44c16e2017-03-14 17:44:21 -070020
Alexander Polcyn16d97ed2017-03-15 10:01:13 -070021EXIT_CODE=0
22ruby src/ruby/end2end/sig_handling_driver.rb || EXIT_CODE=1
23ruby src/ruby/end2end/channel_state_driver.rb || EXIT_CODE=1
Alexander Polcyn70bc4922017-03-15 14:00:46 -070024ruby src/ruby/end2end/channel_closing_driver.rb || EXIT_CODE=1
Alexander Polcynea282e92017-03-20 20:53:34 -070025ruby src/ruby/end2end/sig_int_during_channel_watch_driver.rb || EXIT_CODE=1
Alexander Polcyn077f8902017-03-24 09:53:40 -070026ruby src/ruby/end2end/killed_client_thread_driver.rb || EXIT_CODE=1
Alexander Polcyn792c7e32017-04-14 15:56:04 -070027ruby src/ruby/end2end/forking_client_driver.rb || EXIT_CODE=1
Alexander Polcyn4736e012017-04-14 17:32:00 -070028ruby src/ruby/end2end/grpc_class_init_driver.rb || EXIT_CODE=1
Alexander Polcync24d53b2017-05-17 20:25:38 -070029ruby src/ruby/end2end/multiple_killed_watching_threads_driver.rb || EXIT_CODE=1
Alexander Polcyn8c12d9e2017-10-05 08:47:39 -070030ruby src/ruby/end2end/load_grpc_with_gc_stress_driver.rb || EXIT_CODE=1
Alexander Polcyn16d97ed2017-03-15 10:01:13 -070031exit $EXIT_CODE