Changeset 84912 in webkit


Ignore:
Timestamp:
Apr 26, 2011 7:47:15 AM (13 years ago)
Author:
mihaip@chromium.org
Message:

2011-04-26 Mihai Parparita <mihaip@chromium.org>

Reviewed by Eric Seidel.

Fix timestamp comparison in check-for-weak-vtables-and-externals
https://bugs.webkit.org/show_bug.cgi?id=59416

We should only re-run the check-for-weak-vtables-and-externals script
if the executable is more recent than the last run.

  • Scripts/check-for-weak-vtables-and-externals:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r84906 r84912  
     12011-04-26  Mihai Parparita  <mihaip@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix timestamp comparison in check-for-weak-vtables-and-externals
     6        https://bugs.webkit.org/show_bug.cgi?id=59416
     7       
     8        We should only re-run the check-for-weak-vtables-and-externals script
     9        if the executable is more recent than the last run.
     10
     11        * Scripts/check-for-weak-vtables-and-externals:
     12
    1132011-04-26  Kristóf Kosztyó  <Kosztyo.Kristof@stud.u-szeged.hu>
    214
  • trunk/Tools/Scripts/check-for-weak-vtables-and-externals

    r54405 r84912  
    5757my $sawError = 0;
    5858
    59 if (!defined $executablePathAge || !defined $buildTimestampAge || $executablePathAge > $buildTimestampAge) {
     59if (!defined $executablePathAge || !defined $buildTimestampAge || $executablePathAge < $buildTimestampAge) {
    6060    if (!open NM, "(nm -m '$executablePath' | c++filt | sed 's/^/STDOUT:/') 2>&1 |") {
    6161        print "ERROR: Could not open $executablePath\n";
Note: See TracChangeset for help on using the changeset viewer.