You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
719 B
23 lines
719 B
#!/bin/bash -u
|
|
#
|
|
# Copyright 2016 Google Inc. All Rights Reserved.
|
|
#
|
|
# This script pings the chromebook to determine if it has successfully booted.
|
|
#
|
|
# This script is intended to be used by binary_search_state.py, as
|
|
# part of the binary search triage on ChromeOS package and object files.
|
|
# It waits for the test setup script to build and install the image, then pings
|
|
# the machine. It should return '0' if the test succeeds (the image booted); '1'
|
|
# if the test fails (the image did not boot); and '125' if it could not
|
|
# determine (does not apply in this case).
|
|
#
|
|
|
|
source common/common.sh
|
|
|
|
# Send 3 pings and wait 3 seconds for any responsed (then timeout).
|
|
ping -c 3 -W 3 ${BISECT_REMOTE}
|
|
retval=$?
|
|
|
|
|
|
exit $retval
|