aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/common/boot_test.sh
blob: 384712b70c51e80ef64a53b2048c4255fffc9c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash -u
#
# Copyright 2016 Google LLC
#
# 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