From be7ae61cc0bdcfb2df4b75e961821c8d94a32fd8 Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Wed, 11 Nov 2009 12:32:07 -0500 Subject: [PATCH] add some debug output to investigate bug 522729 (on a CLOSED TREE) --- build/autoconf/config.sub | 8 ++++++-- .../test/browser/browser_aboutCrashesResubmit.js | 3 +++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/build/autoconf/config.sub b/build/autoconf/config.sub index 8ca084bf3340..5f5e61e201a5 100755 --- a/build/autoconf/config.sub +++ b/build/autoconf/config.sub @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 # Free Software Foundation, Inc. -timestamp='2009-08-19' +timestamp='2009-11-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -126,7 +126,8 @@ case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ - storm-chaos* | os2-emx* | rtmk-nova*) + storm-chaos* | os2-emx* | rtmk-nova* | \ + wince-winmo* ) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -1338,6 +1339,9 @@ case $os in -os400*) os=-os400 ;; + -wince-winmo*) + os=-wince-winmo + ;; -wince*) os=-wince ;; diff --git a/toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js b/toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js index 30659ad0ed48..e82a562e6f44 100644 --- a/toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js +++ b/toolkit/crashreporter/test/browser/browser_aboutCrashesResubmit.js @@ -53,6 +53,7 @@ function check_submit_pending(tab, crashes) { let CrashID = null; let CrashURL = null; function csp_onload() { + dump('csp_onload, location = ' + browser.contentWindow.location + '\n'); if (browser.contentWindow.location != 'about:crashes') { browser.removeEventListener("load", csp_onload, true); // loaded the crash report page @@ -106,11 +107,13 @@ function check_submit_pending(tab, crashes) { for each(let crash in crashes) { if (crash.pending) { SubmittedCrash = crash; + dump('check_submit_pending: trying to submit crash ' + crash.id + '\n'); break; } } EventUtils.sendMouseEvent({type:'click'}, SubmittedCrash.id, browser.contentWindow); + dump('check_submit_pending: sent mouse event to ' + SubmittedCrash.id + '\n'); } function test() {