[Webkit-unassigned] [Bug 55504] Use of uninitialized value in numeric lt (<) at Tools/Scripts/old-run-webkit-tests line 1778.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 2 06:18:57 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=55504





--- Comment #2 from Adam Roben (:aroben) <aroben at apple.com>  2011-03-02 06:18:57 PST ---
A little more context:

# We assume that the newest crash log in matching the glob is the one that corresponds to the crash that just occurred.
if (my $newestCrashLog = findNewestFileMatchingGlob($glob)) {
    # The crash log must have been created after this script started running.
    $crashLog = $newestCrashLog if -M $newestCrashLog < 0;
}

So $newestCrashLog itself is defined. I guess -M is returning undefined. The docs say this will happen if the file doesn't exist. Maybe the file was deleted between when it was found by findNewestFileMatchingGlob and when we tested it with -M?

Joe, which bot did this happen on? Do you have a link to the test output that shows the error?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list