J. Richard Barnette | f218474 | 2013-11-07 15:59:01 -0800 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | AUTOTEST=/mnt/host/source/src/third_party/autotest/files |
| 7 | SCR=$AUTOTEST/site_utils/bootperf-bin/$(basename $0) |
| 8 | |
| 9 | if [ ! -f $SCR ]; then |
| 10 | echo "You appear to have a minilayout checkout, without the autotest" |
| 11 | echo "repository in your source tree. Aborting." |
| 12 | exit 1 |
| 13 | fi |
| 14 | |
| 15 | exec $SCR "$@" |