Changeset 83807 in webkit


Ignore:
Timestamp:
Apr 13, 2011 7:20:12 PM (13 years ago)
Author:
tkent@chromium.org
Message:

2011-04-13 Kent Tamura <tkent@chromium.org>

Reviewed by Eric Seidel.

gdb-safari should pass arguments to safari.
https://bugs.webkit.org/show_bug.cgi?id=58439

We can do:

gdb-safari --debug LayoutTests/.../foo.html

  • Scripts/gdb-safari: Passing @ARGV to Safari via gdb --arg.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83806 r83807  
     12011-04-13  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        gdb-safari should pass arguments to safari.
     6        https://bugs.webkit.org/show_bug.cgi?id=58439
     7
     8        We can do:
     9          gdb-safari --debug LayoutTests/.../foo.html
     10
     11        * Scripts/gdb-safari: Passing @ARGV to Safari via gdb --arg.
     12
    1132011-04-13  Dirk Pranke  <dpranke@chromium.org>
    214
  • trunk/Tools/Scripts/gdb-safari

    r41696 r83807  
    5151print "Starting Safari under gdb with DYLD_FRAMEWORK_PATH set to point to built WebKit in $productDir.\n";
    5252my @architectureFlags = ("-arch", architecture()) if !isTiger();
    53 exec $gdbPath, @architectureFlags, $safariPath or die;
     53exec $gdbPath, @architectureFlags, "--arg", $safariPath, @ARGV or die;
Note: See TracChangeset for help on using the changeset viewer.