Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ run_interop_tests() {
for test in "${TESTS[@]}"; do
info "Running $test"
$BUILD_OUTPUT/InteroperabilityTestRunner run_test \
--test_case "$test" \
--server_port $INTEROP_TEST_SERVER_PORT \
"localhost" \
"$INTEROP_TEST_SERVER_PORT" \
"$test" \
2> "interop.$test.log"
success "PASSED $test"
done
Expand Down
2 changes: 1 addition & 1 deletion Sources/GRPCInteroperabilityTests/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ enum Command {
let command = args.removeFirst()
switch command {
case "start_server":
guard (args.count == 2 || args.count == 3),
guard (args.count == 1 || args.count == 2),
let port = args.popLast().flatMap(Int.init),
let useTLS = Command.parseTLSArg(args.popLast())
else {
Expand Down