Title: [283357] trunk/Tools
- Revision
- 283357
- Author
- achristen...@apple.com
- Date
- 2021-09-30 21:14:53 -0700 (Thu, 30 Sep 2021)
Log Message
Stop making a file named null when running API tests
https://bugs.webkit.org/show_bug.cgi?id=230191
r283298 did the trick, but I need to pipe stderr to /dev/null instead of null
* TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm:
(TestWebKitAPI::TEST):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (283356 => 283357)
--- trunk/Tools/ChangeLog 2021-10-01 03:24:27 UTC (rev 283356)
+++ trunk/Tools/ChangeLog 2021-10-01 04:14:53 UTC (rev 283357)
@@ -1,3 +1,13 @@
+2021-09-30 Alex Christensen <achristen...@webkit.org>
+
+ Stop making a file named null when running API tests
+ https://bugs.webkit.org/show_bug.cgi?id=230191
+
+ r283298 did the trick, but I need to pipe stderr to /dev/null instead of null
+
+ * TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm:
+ (TestWebKitAPI::TEST):
+
2021-09-30 Fujii Hironori <hironori.fu...@sony.com>
Python 3 fails to run run-builtins-generator-tests : ModuleNotFoundError: No module named 'builtins_model'
Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm (283356 => 283357)
--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm 2021-10-01 03:24:27 UTC (rev 283356)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm 2021-10-01 04:14:53 UTC (rev 283357)
@@ -454,7 +454,7 @@
[fileManager removeItemAtURL:tempDir error:&error];
EXPECT_NULL(error);
- system("killall AdAttributionDaemon -9 2> null");
+ system("killall AdAttributionDaemon -9 2> /dev/null");
auto plist = testDaemonPList(tempDir);
#if HAVE(OS_LAUNCHD_JOB)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes