blob: 9912ad93db380cccbf48d1ce1bee1134af7cde18 [file] [log] [blame]
#!/bin/bash -e
TARGET='Test Service Server'
TARGET_CLASS='io.grpc.testing.integration.TestServiceServer'
TARGET_ARGS=''
for i in "$@"; do
TARGET_ARGS="$TARGET_ARGS, '$i'"
done
TARGET_ARGS="${TARGET_ARGS:2}"
echo "[INFO] Running: $TARGET ($TARGET_CLASS $TARGET_ARGS)"
gradle -PmainClass="$TARGET_CLASS" -PappArgs="[$TARGET_ARGS]" :grpc-integration-testing:execute