Aviv Keshet | f81b438 | 2013-04-26 14:30:47 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
| 7 | SCR="/mnt/host/source/src/third_party/autotest/files/site_utils/test_that.py" |
| 8 | |
| 9 | if [ ! -f $SCR ]; then |
| 10 | echo "You appear to have a minilayout checkout, without autotest and" |
| 11 | echo "test_that.py available in your source tree. Aborting." |
| 12 | exit 1 |
| 13 | fi |
| 14 | |
| 15 | sudo $SCR $@ |