Title: [260281] branches/safari-609-branch/Tools
Revision
260281
Author
ryanhad...@apple.com
Date
2020-04-17 14:13:37 -0700 (Fri, 17 Apr 2020)

Log Message

Cherry-pick r258385. rdar://problem/61948294

    Pull in JS tests from "Internal" when there are "Internal" tests in an adjacent directory
    https://bugs.webkit.org/show_bug.cgi?id=209038

    Reviewed by Keith Miller.

    This allows us to automatically pull in some tests that are in non open sourced Apple
    checkouts.

    * Scripts/run-_javascript_core-tests:
    (runJSCStressTests):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258385 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-609-branch/Tools/ChangeLog (260280 => 260281)


--- branches/safari-609-branch/Tools/ChangeLog	2020-04-17 21:05:58 UTC (rev 260280)
+++ branches/safari-609-branch/Tools/ChangeLog	2020-04-17 21:13:37 UTC (rev 260281)
@@ -1,3 +1,34 @@
+2020-04-17  Ryan Haddad  <ryanhad...@apple.com>
+
+        Cherry-pick r258385. rdar://problem/61948294
+
+    Pull in JS tests from "Internal" when there are "Internal" tests in an adjacent directory
+    https://bugs.webkit.org/show_bug.cgi?id=209038
+    
+    Reviewed by Keith Miller.
+    
+    This allows us to automatically pull in some tests that are in non open sourced Apple
+    checkouts.
+    
+    * Scripts/run-_javascript_core-tests:
+    (runJSCStressTests):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258385 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-03-13  Saam Barati  <sbar...@apple.com>
+
+            Pull in JS tests from "Internal" when there are "Internal" tests in an adjacent directory
+            https://bugs.webkit.org/show_bug.cgi?id=209038
+
+            Reviewed by Keith Miller.
+
+            This allows us to automatically pull in some tests that are in non open sourced Apple
+            checkouts.
+
+            * Scripts/run-_javascript_core-tests:
+            (runJSCStressTests):
+
 2020-04-10  Ryan Haddad  <ryanhad...@apple.com>
 
         Cherry-pick r259099. rdar://problem/59610140

Modified: branches/safari-609-branch/Tools/Scripts/run-_javascript_core-tests (260280 => 260281)


--- branches/safari-609-branch/Tools/Scripts/run-_javascript_core-tests	2020-04-17 21:05:58 UTC (rev 260280)
+++ branches/safari-609-branch/Tools/Scripts/run-_javascript_core-tests	2020-04-17 21:13:37 UTC (rev 260281)
@@ -685,6 +685,13 @@
             "JSTests/complex.yaml",
             "JSTests/ChakraCore.yaml",
             "JSTests/wasm.yaml");
+
+        my $internalTestsDir = File::Spec->catdir(dirname(sourceDir()), "Internal", "Tests", "InternalJSTests");
+        if (-e $internalTestsDir and -d $internalTestsDir) {
+            push(@testList, File::Spec->catfile($internalTestsDir, "internal-js-tests.yaml"));
+            push(@testList, File::Spec->catfile($internalTestsDir, "regress.yaml"));
+        }
+
         $hasTestsToRun = 1;
     }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to