From 9b8fd4e6716d8d4b65d3ca8dfaf8a2ca747f94a2 Mon Sep 17 00:00:00 2001 From: Ken Mixter Date: Thu, 14 Oct 2010 13:23:44 -0700 Subject: [PATCH] crosutils: make cros_run_unit_tests prepare before building tests Change-Id: I105c8e37b1241e89efda2c7cef35840bdc32e108 BUG=7754 TEST=Ran cros_run_unit_tests and verify patch (during prepare step) was done Review URL: http://codereview.chromium.org/3801003 --- cros_run_unit_tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cros_run_unit_tests b/cros_run_unit_tests index 9a17b4452d..169edde582 100755 --- a/cros_run_unit_tests +++ b/cros_run_unit_tests @@ -42,10 +42,10 @@ function record_test_failure() { function run_unit_test() { FEATURES="-buildpkg -digest noauto" \ - ebuild-${FLAGS_board} "${1}" clean unpack configure test + ebuild-${FLAGS_board} "${1}" clean unpack prepare configure test } -# Parse command line and die if unexpected paramters given. +# Parse command line and die if unexpected parameters given. FLAGS_HELP="usage: ${0} [flags]" FLAGS "${@}" || exit 1 eval set -- "${FLAGS_ARGV}"