Autoupdate tests can only be run on leased devices from the test lab (crosfleet). Note that TLW service instructions are subject to change. Please update the documentation if the instructions don't work anymore.
To run tests on self-built images you need to add the following on your lab device:
# Add correct partition to this command. It tells you which one when you run it. /usr/share/vboot/bin/make_dev_ssd.sh --remove_rootfs_verification reboot echo "CHROMEOS_RELEASE_BUILDER_PATH=None" >> /etc/lsb-release
mkdir chrome_infra cd chrome_infra fetch infra # or fetch infra_internal if you are a Googler eval $(infra/go/env.py)
Add $HOME/chrome_infra/infra/go to your $GOPATH for example by appending the following to ~/.profile.
export GOPATH="$GOPATH:$HOME/chrome_infra/infra/go"
cd ~/chrome_infra/infra/go/src/infra/cros/cmd (cd prototype-tlw && go run . -port 7151) &
If you want to run tests on a lab device with hostname matching “chromeos8-*”, add -lab8 to the prototype-tlw command.
TIP: Make sure the service is running using
ps aux | grep tlw
If you get a $GOPATH error when starting the service, make sure you have followed Tast Quickstart.
TL;DR; Your
~/.profileor~/.bashrcshould contain:
export CHROMEOS_SRC=$HOME/chromiumos
# Main GOPATH, where extra binaries are installed.
export GOPATH=$HOME/go
# Append Tast repos to GOPATH
export GOPATH=${GOPATH}:${CHROMEOS_SRC}/src/platform/tast-tests:${CHROMEOS_SRC}/src/platform/tast
# Append Tast dependencies
export GOPATH=${GOPATH}:${CHROMEOS_SRC}/chroot/usr/lib/gopath
# chrome infra
export GOPATH=$GOPATH:$HOME/chrome_infra/infra/go
Make sure that you can access the device without a password, for example by using ssh keys.
Create ssh tunnel to access DUT from inside chroot:
autossh -L 2200:localhost:22 root@<dut>
Run the test inside chroot as follows:
(chroot) tast run -var=updateutil.tlwAddress="localhost:7151" localhost:2200 <test_name>