diff --git a/runner/src/main.rs b/runner/src/main.rs index 460d9dd70f1..976fcfa7b07 100644 --- a/runner/src/main.rs +++ b/runner/src/main.rs @@ -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 { diff --git a/scripts/run_example b/scripts/run_example index 98cce15905a..ed6a884d743 100755 --- a/scripts/run_example +++ b/scripts/run_example @@ -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