[webkit-changes] cvs commit: WebKitTools/Scripts run-webkit-tests build-webkit update-webkit

Eric eseidel at opensource.apple.com
Mon Dec 5 23:20:44 PST 2005


eseidel     05/12/05 23:20:44

  Modified:    .        ChangeLog
               Scripts  run-webkit-tests build-webkit update-webkit
  Log:
  Bug #: none
  Submitted by: eseidel
  Reviewed by: mjs
          Script updates for SVG files move (remove references to SVGSupport)
  
          * Scripts/build-webkit: remove SVGSupport
          * Scripts/run-webkit-tests: Resources -> resources for --svg
          * Scripts/update-webkit: remove SVGSupport
  
  Revision  Changes    Path
  1.126     +10 -0     WebKitTools/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitTools/ChangeLog,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- ChangeLog	6 Dec 2005 02:16:56 -0000	1.125
  +++ ChangeLog	6 Dec 2005 07:20:42 -0000	1.126
  @@ -1,5 +1,15 @@
   2005-12-05  Eric Seidel  <eseidel at apple.com>
   
  +        Reviewed by mjs.
  +
  +        Script updates for SVG files move (remove references to SVGSupport)
  +
  +        * Scripts/build-webkit: remove SVGSupport
  +        * Scripts/run-webkit-tests: Resources -> resources for --svg
  +        * Scripts/update-webkit: remove SVGSupport
  +
  +2005-12-05  Eric Seidel  <eseidel at apple.com>
  +
           Reviewed mjs.
   
           * checkout: remove --svg support, SVG is now checked out by default
  
  
  
  1.36      +2 -2      WebKitTools/Scripts/run-webkit-tests
  
  Index: run-webkit-tests
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/run-webkit-tests,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- run-webkit-tests	30 Nov 2005 00:03:21 -0000	1.35
  +++ run-webkit-tests	6 Dec 2005 07:20:43 -0000	1.36
  @@ -96,7 +96,7 @@
   
   my $layoutTestsName = "LayoutTests";
   if ($testSVGs) {
  -    $layoutTestsName = "SVGSupport/layout-tests";
  +    $layoutTestsName = "LayoutTests/svg";
   }
   
   my $workingDir = getcwd();
  @@ -108,7 +108,7 @@
   
   my $findArguments = "\\( -name resources \\! -prune \\) -or -name '*.html' -or -name '*.xml' -or -name '*.xhtml'";
   if ($testSVGs) {
  -    $findArguments = "\\( -name Resources \\! -prune \\) -or -name '*.svg' -or -name '*.xml'";
  +    $findArguments = "\\( -name resources \\! -prune \\) -or -name '*.svg' -or -name '*.xml'";
   } elsif ($haveSVGSupport) {
   	$findArguments .= " -or -name '*.svg'";
   }
  
  
  
  1.18      +0 -4      WebKitTools/Scripts/build-webkit
  
  Index: build-webkit
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/build-webkit,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- build-webkit	21 Nov 2005 09:36:51 -0000	1.17
  +++ build-webkit	6 Dec 2005 07:20:43 -0000	1.18
  @@ -47,10 +47,6 @@
   my @projects = ("JavaScriptCore", "WebCore", "WebKit");
   my @otherDirs = ("WebKitLibraries");
   my $checkoutScript = "WebKitTools/checkout";
  -if ($svgSupport) {
  -    $checkoutScript .= " --svg";
  -    push(@otherDirs, "SVGSupport");
  -}
   for my $dir (@projects, @otherDirs) {
       if (! -d $dir) {
           die "Error: No $dir directory found. Please run \"$checkoutScript\" first.\n";
  
  
  
  1.11      +0 -1      WebKitTools/Scripts/update-webkit
  
  Index: update-webkit
  ===================================================================
  RCS file: /cvs/root/WebKitTools/Scripts/update-webkit,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- update-webkit	6 Oct 2005 15:44:59 -0000	1.10
  +++ update-webkit	6 Dec 2005 07:20:43 -0000	1.11
  @@ -52,7 +52,6 @@
   
   my @sources = ("WebKitTools", "JavaScriptCore", "WebCore", "WebKitLibraries", "WebKit");
   push @sources, "LayoutTests" if $includeTests;
  -push @sources, "SVGSupport" if -d "SVGSupport";
   
   # Check out all the sources.
   print "CVS root is $root\n" unless $quiet;
  
  
  



More information about the webkit-changes mailing list