Skip to content

Commit

Permalink
scripts: reinstate server-streaming tests for gRPC server
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddrysdale committed Jun 10, 2020
1 parent b7c1e7c commit 1d531e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions runner/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,13 @@ fn run_examples(opt: &RunExamples) -> Step {
name: "abitest".to_string(),
rust_module_names: vec!["module_0".to_string(), "module_1".to_string()],
// TODO(#1040): reinstate storage tests when Rust runtime supports them.
// TODO(#953): reinstate gRPC server server-streaming tests when Rust runtime
// supports them.
additional_client_flags: vec![
"--cert_chain=../../../../../../../../examples/certs/local/local.pem"
.to_string(),
"--private_key=../../../../../../../../examples/certs/local/local.key"
.to_string(),
"--test_exclude=(Storage|GrpcServerServerStreamingMethod)".to_string(),
"--test_exclude=Storage".to_string(),
],
},
Example {
Expand Down
3 changes: 1 addition & 2 deletions scripts/run_example
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ fi

if [[ "${EXAMPLE}" == 'abitest' ]]; then
# TODO(#1040): reinstate storage tests when Rust runtime supports them.
# TODO(#953): reinstate gRPC server server-streaming tests when Rust runtime supports them.
readonly ADDITIONAL_ARGS=('--test_exclude=(Storage|GrpcServerServerStreamingMethod)')
readonly ADDITIONAL_ARGS=('--test_exclude=Storage')
else
readonly ADDITIONAL_ARGS=()
fi
Expand Down

0 comments on commit 1d531e3

Please sign in to comment.