mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 13:36:58 +02:00
20 lines
667 B
Bash
Executable File
20 lines
667 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# This script makes autotest client tests inside a chroot environment. The idea
|
|
# is to compile any platform-dependent autotest client tests in the build
|
|
# environment, since client systems under test lack the proper toolchain.
|
|
#
|
|
# The user can later run autotest against an ssh enabled test client system, or
|
|
# install the compiled client tests directly onto the rootfs image.
|
|
|
|
. "$(dirname "$0")/common.sh"
|
|
|
|
get_default_board
|
|
|
|
./autotest --build=all --board="${DEFAULT_BOARD}" $@
|
|
|