1#!/bin/bash 2# Copyright 2015 gRPC authors. 3# 4# 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 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# 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. 15 16set -ex 17 18# change to grpc repo root 19cd "$(dirname "$0")/../../.." 20 21EXIT_CODE=0 22time ruby src/ruby/end2end/sig_handling_driver.rb || EXIT_CODE=1 23time ruby src/ruby/end2end/channel_state_driver.rb || EXIT_CODE=1 24time ruby src/ruby/end2end/channel_closing_driver.rb || EXIT_CODE=1 25time ruby src/ruby/end2end/sig_int_during_channel_watch_driver.rb || EXIT_CODE=1 26time ruby src/ruby/end2end/killed_client_thread_driver.rb || EXIT_CODE=1 27time ruby src/ruby/end2end/forking_client_driver.rb || EXIT_CODE=1 28time ruby src/ruby/end2end/grpc_class_init_driver.rb || EXIT_CODE=1 29time ruby src/ruby/end2end/multiple_killed_watching_threads_driver.rb || EXIT_CODE=1 30time ruby src/ruby/end2end/load_grpc_with_gc_stress_driver.rb || EXIT_CODE=1 31time ruby src/ruby/end2end/client_memory_usage_driver.rb || EXIT_CODE=1 32time ruby src/ruby/end2end/package_with_underscore_checker.rb || EXIT_CODE=1 33exit $EXIT_CODE 34