Title: [293512] trunk/Tools
Revision
293512
Author
commit-qu...@webkit.org
Date
2022-04-27 09:32:05 -0700 (Wed, 27 Apr 2022)

Log Message

test-webkitperl outputs git hints during the test
https://bugs.webkit.org/show_bug.cgi?id=239759

Patch by Kimmo Kinnunen <kkinnu...@apple.com> on 2022-04-27
Reviewed by Alexey Proskuryakov.

Avoid git hints about initial branch name during a test that initializes a git repository.
The output disrupts the test system result reporting output.

Specify the quiet operation. --initial-branch cannot be specified
since the Perl tests run on older git.

* Scripts/webkitperl/prepare-ChangeLog_unittest/filenameWithParentheses.pl:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (293511 => 293512)


--- trunk/Tools/ChangeLog	2022-04-27 16:30:31 UTC (rev 293511)
+++ trunk/Tools/ChangeLog	2022-04-27 16:32:05 UTC (rev 293512)
@@ -1,3 +1,18 @@
+2022-04-27  Kimmo Kinnunen  <kkinnu...@apple.com>
+
+        test-webkitperl outputs git hints during the test
+        https://bugs.webkit.org/show_bug.cgi?id=239759
+
+        Reviewed by Alexey Proskuryakov.
+
+        Avoid git hints about initial branch name during a test that initializes a git repository.
+        The output disrupts the test system result reporting output.
+
+        Specify the quiet operation. --initial-branch cannot be specified
+        since the Perl tests run on older git.
+
+        * Scripts/webkitperl/prepare-ChangeLog_unittest/filenameWithParentheses.pl:
+
 2022-04-26  Michael Catanzaro  <mcatanz...@redhat.com>
 
         [GLib] Make WebKitSettings XSS auditor functions no-op

Modified: trunk/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/filenameWithParentheses.pl (293511 => 293512)


--- trunk/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/filenameWithParentheses.pl	2022-04-27 16:30:31 UTC (rev 293511)
+++ trunk/Tools/Scripts/webkitperl/prepare-ChangeLog_unittest/filenameWithParentheses.pl	2022-04-27 16:32:05 UTC (rev 293512)
@@ -46,7 +46,7 @@
 }
 
 my $temporaryDirectory = File::Temp->newdir();
-system("git", "init", $temporaryDirectory);
+system("git", "init", "-q", $temporaryDirectory);
 my $filename = File::Spec->catfile($temporaryDirectory, "FileWith(Parentheses).txt");
 writeFileWithContent($filename, "");
 writeFileWithContent(File::Spec->catfile($temporaryDirectory, ".gitattributes"), "* foo=1\nb");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to