blob: c35fa59fab6f9775ca3e3ffaceeca1942ec3934e [file] [log] [blame]
J. Richard Barnettef2184742013-11-07 15:59:01 -08001#!/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
6AUTOTEST=/mnt/host/source/src/third_party/autotest/files
7SCR=$AUTOTEST/site_utils/bootperf-bin/$(basename $0)
8
9if [ ! -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
13fi
14
15exec $SCR "$@"