Title: [163566] trunk/Tools
Revision
163566
Author
[email protected]
Date
2014-02-06 15:24:36 -0800 (Thu, 06 Feb 2014)

Log Message

Remove run-test-webkit-api
https://bugs.webkit.org/show_bug.cgi?id=118145

Reviewed by Csaba Osztrogonác.

Having two scripts doing the same thing is confusing. There are also cases failing
on run-test-webkit-api since it does not restart a new process for each test.

* Scripts/run-test-webkit-api: Removed.
* Scripts/webkitdirs.pm:

Modified Paths

Removed Paths

Diff

Modified: trunk/Tools/ChangeLog (163565 => 163566)


--- trunk/Tools/ChangeLog	2014-02-06 23:06:10 UTC (rev 163565)
+++ trunk/Tools/ChangeLog	2014-02-06 23:24:36 UTC (rev 163566)
@@ -1,3 +1,16 @@
+2014-02-06  Benjamin Poulain  <[email protected]>
+
+        Remove run-test-webkit-api
+        https://bugs.webkit.org/show_bug.cgi?id=118145
+
+        Reviewed by Csaba Osztrogonác.
+
+        Having two scripts doing the same thing is confusing. There are also cases failing
+        on run-test-webkit-api since it does not restart a new process for each test.
+
+        * Scripts/run-test-webkit-api: Removed.
+        * Scripts/webkitdirs.pm:
+
 2014-02-06  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r163530.

Deleted: trunk/Tools/Scripts/run-test-webkit-api (163565 => 163566)


--- trunk/Tools/Scripts/run-test-webkit-api	2014-02-06 23:06:10 UTC (rev 163565)
+++ trunk/Tools/Scripts/run-test-webkit-api	2014-02-06 23:24:36 UTC (rev 163566)
@@ -1,40 +0,0 @@
-#!/usr/bin/perl -w
-
-# Copyright (C) 2010 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1.  Redistributions of source code must retain the above copyright
-#     notice, this list of conditions and the following disclaimer. 
-# 2.  Redistributions in binary form must reproduce the above copyright
-#     notice, this list of conditions and the following disclaimer in the
-#     documentation and/or other materials provided with the distribution. 
-# 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-#     its contributors may be used to endorse or promote products derived
-#     from this software without specific prior written permission. 
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-# Simplified "run" script for launching TestWebKitAPI.
-
-use strict;
-use FindBin;
-use lib $FindBin::Bin;
-use webkitdirs;
-
-printHelpAndExitForRunAndDebugWebKitAppIfNeeded();
-
-setConfiguration();
-
-exit exitStatus(runTestWebKitAPI());

Modified: trunk/Tools/Scripts/webkitdirs.pm (163565 => 163566)


--- trunk/Tools/Scripts/webkitdirs.pm	2014-02-06 23:06:10 UTC (rev 163565)
+++ trunk/Tools/Scripts/webkitdirs.pm	2014-02-06 23:24:36 UTC (rev 163566)
@@ -2275,15 +2275,6 @@
     return 1;
 }
 
-sub runTestWebKitAPI
-{
-    if (isAppleMacWebKit()) {
-        return runMacWebKitApp(File::Spec->catfile(productDir(), "TestWebKitAPI"));
-    }
-
-    return 1;
-}
-
 sub readRegistryString
 {
     my ($valueName) = @_;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to