Changeset 122350 in webkit


Ignore:
Timestamp:
Jul 11, 2012 11:45:10 AM (12 years ago)
Author:
mrowe@apple.com
Message:

<http://webkit.org/b/90835> Teach bisect-builds to work with a Safari.app that has entitlements.

Reviewed by Dan Bernstein.

  • Scripts/bisect-builds: Use safariPathFromSafariBundle to determine which binary within the application

should be invoked.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r122349 r122350  
     12012-07-09  Mark Rowe  <mrowe@apple.com>
     2
     3        <http://webkit.org/b/90835> Teach bisect-builds to work with a Safari.app that has entitlements.
     4
     5        Reviewed by Dan Bernstein.
     6
     7        * Scripts/bisect-builds: Use safariPathFromSafariBundle to determine which binary within the application
     8        should be invoked.
     9
    1102012-07-11  Zan Dobersek  <zandobersek@gmail.com>
    211
  • trunk/Tools/Scripts/bisect-builds

    r79831 r122350  
    4444use File::Spec;
    4545use File::Temp qw(tempfile);
     46use FindBin;
    4647use Getopt::Long;
    4748use Time::HiRes qw(usleep);
     49
     50use lib $FindBin::Bin;
     51use webkitdirs qw(safariPathFromSafariBundle);
    4852
    4953sub createTempFile($);
     
    120124$nightlyDownloadDirectory = glob($nightlyDownloadDirectory) if $nightlyDownloadDirectory =~ /^~/;
    121125$safariPath = glob($safariPath) if $safariPath =~ /^~/;
    122 $safariPath = File::Spec->catdir($safariPath, "Contents/MacOS/Safari") if $safariPath =~ m#\.app/*#;
     126$safariPath = safariPathFromSafariBundle($safariPath) if $safariPath =~ m#\.app/*#;
    123127
    124128$nightlyDownloadDirectory = File::Spec->catdir($nightlyDownloadDirectory, $branch);
Note: See TracChangeset for help on using the changeset viewer.