Index: cros_run_unit_tests |
diff --git a/cros_run_unit_tests b/cros_run_unit_tests |
index 0870f6d430f6804e5760f63ba1adc0e06218512a..3673b1b6dd793a9c32ef26d67e9485508a9e3ef6 100755 |
--- a/cros_run_unit_tests |
+++ b/cros_run_unit_tests |
@@ -47,9 +47,10 @@ function record_test_failure() { |
FAILED_PACKAGES="${FAILED_PACKAGES} ${1}" |
} |
+# Run the unit test for the given package, via ebuild src_test() function |
davidjames
2011/04/07 17:02:07
Could you add a trailing period?
mtennant
2011/04/07 20:01:43
Done.
|
function run_unit_test() { |
- FEATURES="-buildpkg -digest noauto" \ |
- ebuild-${FLAGS_board} "${1}" clean unpack prepare configure test |
+ FEATURES="-buildpkg -digest" \ |
+ ebuild-${FLAGS_board} "${1}" clean test clean |
} |
# Parse command line and die if unexpected parameters given. |