Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use echo to test whether host is up #16322

Merged
merged 2 commits into from Feb 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 8 additions & 5 deletions testing/fuchsia/run_tests.sh
Expand Up @@ -33,14 +33,17 @@ trap reboot EXIT

./fuchsia_ctl -d $device_name pave -i $1

# TODO(gw280): Enable tests using JIT runner
for i in {1..10}; do
./fuchsia_ctl -d $device_name test \
-f flutter_aot_runner-0.far \
-f flutter_runner_tests-0.far \
-t flutter_runner_tests && break || sleep 15;
./fuchsia_ctl -d $device_name ssh -c "echo up" && break || sleep 15;
done

# TODO(gw280): Enable tests using JIT runner

./fuchsia_ctl -d $device_name test \
-f flutter_aot_runner-0.far \
-f flutter_runner_tests-0.far \
-t flutter_runner_tests

./fuchsia_ctl -d $device_name test \
-f fml_tests-0.far \
-t fml_tests
Expand Down