⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 252773 in webkit


Ignore:
Timestamp:
Nov 22, 2019, 6:55:03 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

Support JSCOnly platform in test reporting
https://bugs.webkit.org/show_bug.cgi?id=204495

Patch by Paulo Matos <Paulo Matos> on 2019-11-22
Reviewed by Carlos Garcia Campos.

Add JSCOnly to possible platforms.

  • Scripts/run-javascriptcore-tests:

(configurationForUpload):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r252770 r252773  
     12019-11-22  Paulo Matos  <pmatos@igalia.com>
     2
     3        Support JSCOnly platform in test reporting
     4        https://bugs.webkit.org/show_bug.cgi?id=204495
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Add JSCOnly to possible platforms.
     9
     10        * Scripts/run-javascriptcore-tests:
     11        (configurationForUpload):
     12
    1132019-11-22  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r252734 r252773  
    390390            $version = splitVersionString($version);
    391391        }
     392    } elsif (isJSCOnly()) {
     393        $platform = 'jsc-only';
     394        if (!$version) {
     395            chomp($version = `uname -r`);
     396            $version = splitVersionString($version);
     397        }
    392398    } elsif (isAnyWindows()) {
    393399        $platform = 'win';
Note: See TracChangeset for help on using the changeset viewer.