blob: 78e736a1a33f91887637b62a98785543e6d9ccd9 [file] [log] [blame]
nathanmittlerffc18f62014-10-28 16:14:27 -07001#!/bin/bash -e
2TARGET='Test Service Client'
nmittlerf8314582015-01-27 10:25:39 -08003TARGET_CLASS='io.grpc.testing.integration.TestServiceClient'
nathanmittlerffc18f62014-10-28 16:14:27 -07004
nmittler02c953e2015-01-26 14:03:11 -08005TARGET_ARGS=''
6for i in "$@"; do
7 TARGET_ARGS="$TARGET_ARGS, '$i'"
8done
9TARGET_ARGS="${TARGET_ARGS:2}"
10
Eric Andersonbcb3e8c2015-03-22 16:30:00 -070011cd "$(dirname "$0")"
nathanmittlerffc18f62014-10-28 16:14:27 -070012echo "[INFO] Running: $TARGET ($TARGET_CLASS $TARGET_ARGS)"
Eric Anderson5d37b292015-02-17 12:44:28 -080013./gradlew -PmainClass="$TARGET_CLASS" -PappArgs="[$TARGET_ARGS]" :grpc-integration-testing:execute