From 8bfc4b5247e1b7320cab4d791569cdb27699f81b Mon Sep 17 00:00:00 2001 From: Thieu Le Date: Thu, 6 Oct 2011 15:49:36 -0700 Subject: [PATCH] Support finding minidumps located deeper in the test results tree. BUG=chromium-os:21383 TEST=Manual run of cros_generate_stacks_bvt against a test result that has a minidump buried 6 levels deep Change-Id: Iebb24f02d086c24feaae47603460ec83ded15800 Reviewed-on: http://gerrit.chromium.org/gerrit/8924 Tested-by: Thieu Le Reviewed-by: Chris Masone Commit-Ready: Thieu Le --- cros_generate_stacks_bvt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cros_generate_stacks_bvt b/cros_generate_stacks_bvt index f383881889..15b7206311 100755 --- a/cros_generate_stacks_bvt +++ b/cros_generate_stacks_bvt @@ -58,7 +58,7 @@ function cleanup() { trap cleanup INT TERM EXIT info "Downloading minidumps from $2..." -wget -q -nv -r -np -A "*.dmp" -P "${OUTPUT_DIR}" $2 +wget -q -nv -r -l 10 -np -A "*.dmp" -P "${OUTPUT_DIR}" $2 if [[ -z "$(find "${OUTPUT_DIR}" -name "*.dmp")" ]] ; then die "No minidumps found" fi