OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
petkov
2010/01/27 15:46:26
You've renamed an older version of make_autotest.s
seano
2010/01/27 19:51:47
oops. Re-synced now.
| |
2 | 2 |
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # This script makes autotest client tests inside an Ubuntu chroot | 7 # This script makes autotest client tests inside an Ubuntu chroot |
8 # environment. The idea is to compile any platform-dependent autotest | 8 # environment. The idea is to compile any platform-dependent autotest |
9 # client tests in the build environment, since client systems under | 9 # client tests in the build environment, since client systems under |
10 # test lack the proper toolchain. | 10 # test lack the proper toolchain. |
11 # | 11 # |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
52 touch ${base_dir}/__init__.py | 52 touch ${base_dir}/__init__.py |
53 done | 53 done |
54 } | 54 } |
55 | 55 |
56 cd ${AUTOTEST_DEST} | 56 cd ${AUTOTEST_DEST} |
57 touchInitPy client/tests client/site_tests | 57 touchInitPy client/tests client/site_tests |
58 touch __init__.py | 58 touch __init__.py |
59 | 59 |
60 # run the magic test setup script. | 60 # run the magic test setup script. |
61 client/bin/autotest client/site_tests/setup/control | 61 client/bin/autotest client/site_tests/setup/control |
OLD | NEW |