smithy-rs/tools/ci-scripts/check-aws-sdk-smoketest-uni...

17 lines
384 B
Bash
Executable File

#!/bin/bash
#
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#
set -eux
cd aws-sdk-smoketest
cargo test --all-features
for test_dir in tests/*; do
if [ -f "${test_dir}/Cargo.toml" ]; then
echo "#### Testing ${test_dir}..."
cargo test --all-features --manifest-path "${test_dir}/Cargo.toml"
fi
done