Changeset 203972 in webkit


Ignore:
Timestamp:
Aug 1, 2016 12:28:55 AM (8 years ago)
Author:
keith_miller@apple.com
Message:

We should not keep the JavaScript tests inside the Source/JavaScriptCore/ directory.
https://bugs.webkit.org/show_bug.cgi?id=160372

Rubber stamped by Geoffrey Garen.

This patch moves all the JavaScript tests from Source/JavaScriptCore/tests to
a new top level directory, JSTests. Having the tests in the Source directory
was both confusing and inconvenient for people that just want to checkout the
source code of WebKit. Since there is no other obvious place to put all the
JavaScript tests a new top level directory seemed the most sensible.

  • JSTests/: Copied from Source/JavaScriptCore/tests.
  • Source/JavaScriptCore/tests/: Deleted.
  • Scripts/import-test262-tests:
  • Scripts/run-javascriptcore-tests:
  • Scripts/update-javascriptcore-test-res:
Location:
trunk
Files:
1 added
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r203768 r203972  
     12016-08-01  Keith Miller  <keith_miller@apple.com>
     2
     3        We should not keep the JavaScript tests inside the Source/JavaScriptCore/ directory.
     4        https://bugs.webkit.org/show_bug.cgi?id=160372
     5
     6        Rubber stamped by Geoffrey Garen.
     7
     8        This patch moves all the JavaScript tests from Source/JavaScriptCore/tests to
     9        a new top level directory, JSTests. Having the tests in the Source directory
     10        was both confusing and inconvenient for people that just want to checkout the
     11        source code of WebKit. Since there is no other obvious place to put all the
     12        JavaScript tests a new top level directory seemed the most sensible.
     13
     14        * JSTests/: Copied from Source/JavaScriptCore/tests.
     15        * Source/JavaScriptCore/tests/: Deleted.
     16        * Scripts/import-test262-tests:
     17        * Scripts/run-javascriptcore-tests:
     18        * Scripts/update-javascriptcore-test-res:
     19
     20
    1212016-07-27  Carlos Garcia Campos  <cgarcia@igalia.com>
    222
  • trunk/Source/JavaScriptCore/ChangeLog

    r203957 r203972  
     12016-08-01  Keith Miller  <keith_miller@apple.com>
     2
     3        We should not keep the JavaScript tests inside the Source/JavaScriptCore/ directory.
     4        https://bugs.webkit.org/show_bug.cgi?id=160372
     5
     6        Rubber stamped by Geoffrey Garen.
     7
     8        This patch moves all the JavaScript tests from Source/JavaScriptCore/tests to
     9        a new top level directory, JSTests. Having the tests in the Source directory
     10        was both confusing an inconvenient for people that just want to checkout the
     11        source code of WebKit. Since there is no other obvious place to put all the
     12        JavaScript tests a new top level directory seemed the most sensible.
     13
     14        * tests/: Deleted.
     15
    1162016-07-31  Yusuke Suzuki  <utatane.tea@gmail.com>
    217
  • trunk/Tools/ChangeLog

    r203955 r203972  
     12016-08-01  Keith Miller  <keith_miller@apple.com>
     2
     3        We should not keep the JavaScript tests inside the Source/JavaScriptCore/ directory.
     4        https://bugs.webkit.org/show_bug.cgi?id=160372
     5
     6        Rubber stamped by Geoffrey Garen.
     7
     8        This patch moves all the JavaScript tests from Source/JavaScriptCore/tests to
     9        a new top level directory, JSTests. Having the tests in the Source directory
     10        was both confusing an inconvenient for people that just want to checkout the
     11        source code of WebKit. Since there is no other obvious place to put all the
     12        JavaScript tests a new top level directory seemed the most sensible.
     13
     14        * Scripts/import-test262-tests:
     15        * Scripts/run-javascriptcore-tests:
     16        * Scripts/update-javascriptcore-test-res:
     17
    1182016-07-31  Nan Wang  <n_wang@apple.com>
    219
  • trunk/Tools/Scripts/import-test262-tests

    r203421 r203972  
    3434SCRIPTS_PATH = THIS_SCRIPT_PATH.dirname
    3535WEBKIT_PATH = SCRIPTS_PATH.dirname.dirname
    36 TEST262_YAML_PATH = WEBKIT_PATH + "Source/JavaScriptCore/tests/test262.yaml"
    37 TEST262_REVISION_PATH = WEBKIT_PATH + "Source/JavaScriptCore/tests/test262/test262-Revision.txt"
     36TEST262_YAML_PATH = WEBKIT_PATH + "JSTests/test262.yaml"
     37TEST262_REVISION_PATH = WEBKIT_PATH + "JSTests/test262/test262-Revision.txt"
    3838
    3939raise unless SCRIPTS_PATH.basename.to_s == "Scripts"
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r203440 r203972  
    264264            "PerformanceTests/ES6SampleBench/Air/airjs-tests.yaml",
    265265            "PerformanceTests/ES6SampleBench/Basic/basic-tests.yaml",
    266             "Source/JavaScriptCore/tests/executableAllocationFuzz.yaml",
    267             "Source/JavaScriptCore/tests/exceptionFuzz.yaml",
     266            "JSTests/executableAllocationFuzz.yaml",
     267            "JSTests/exceptionFuzz.yaml",
    268268            "PerformanceTests/SunSpider/no-architecture-specific-optimizations.yaml",
    269269            "PerformanceTests/SunSpider/shadow-chicken.yaml",
    270270            "PerformanceTests/SunSpider/tests/v8-v6",
    271             "Source/JavaScriptCore/tests/stress",
     271            "JSTests/stress",
    272272            "LayoutTests/js/regress/script-tests",
    273273            "PerformanceTests/SunSpider/profiler-test.yaml",
    274274            "LayoutTests/jsc-layout-tests.yaml",
    275             "Source/JavaScriptCore/tests/typeProfiler.yaml",
    276             "Source/JavaScriptCore/tests/controlFlowProfiler.yaml",
    277             "Source/JavaScriptCore/tests/es6.yaml",
    278             "Source/JavaScriptCore/tests/modules.yaml");
     275            "JSTests/typeProfiler.yaml",
     276            "JSTests/controlFlowProfiler.yaml",
     277            "JSTests/es6.yaml",
     278            "JSTests/modules.yaml");
    279279    }
    280280
    281281    if ($runMozillaTests) {
    282         push(@testList, "Source/JavaScriptCore/tests/mozilla/mozilla-tests.yaml");
     282        push(@testList, "JSTests/mozilla/mozilla-tests.yaml");
    283283    }
    284284
  • trunk/Tools/Scripts/update-javascriptcore-test-results

    r165676 r203972  
    3434
    3535chdirWebKit();
    36 chdir "Source/JavaScriptCore/tests/mozilla" or die;
     36chdir "JSTests/mozilla" or die;
    3737
    3838my $force = 0;
Note: See TracChangeset for help on using the changeset viewer.