Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: src/scripts/build_autotest.sh

Issue 546137: Cleanup and merge autotest wrappers. (Closed)
Patch Set: Addressed comments from ericli and kmixter Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698