aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/cros_pkg/create_cleanup_script.py
diff options
context:
space:
mode:
authorCassidy Burden <cburden@google.com>2016-06-30 15:24:20 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-07-01 11:58:13 -0700
commitc4671bdd601ff945b2cccbfe1aee9f931dc908c7 (patch)
tree4cdec6fd367b6f8a9162f4c56f18d3232a494b63 /binary_search_tool/cros_pkg/create_cleanup_script.py
parent63f13489b1a02bbbc75b46fec6ae7a817442df94 (diff)
downloadtoolchain-utils-c4671bdd601ff945b2cccbfe1aee9f931dc908c7.tar.gz
binary search tool: (Refactor) Extract common scripts into common folder
Refactor warning! Move install.sh, boot_test.sh, and interactive_test.sh into common folder so they can be shared by both package and object bisectors. To allow this sharing, sysroot_wrapper now has a setup script similar to cros_pkg. All scripts now source common/common.sh. TEST=Run unit tests, run system tests, run couple iterations of install script for both bisectors. Change-Id: I9e164b4e6b842ff321c2400201e6ac0984f99088 Reviewed-on: https://chrome-internal-review.googlesource.com/268027 Commit-Ready: Cassidy Burden <cburden@google.com> Tested-by: Cassidy Burden <cburden@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'binary_search_tool/cros_pkg/create_cleanup_script.py')
-rwxr-xr-xbinary_search_tool/cros_pkg/create_cleanup_script.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_search_tool/cros_pkg/create_cleanup_script.py b/binary_search_tool/cros_pkg/create_cleanup_script.py
index 45a90260..dc05d1ba 100755
--- a/binary_search_tool/cros_pkg/create_cleanup_script.py
+++ b/binary_search_tool/cros_pkg/create_cleanup_script.py
@@ -100,7 +100,7 @@ def Main(argv):
options.board))
out_file.write('\n')
# Remove common.sh file
- out_file.write('rm cros_pkg/common.sh\n')
+ out_file.write('rm common/common.sh\n')
return 0