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

Changeset 283357 in webkit


Ignore:
Timestamp:
Sep 30, 2021, 9:14:53 PM (5 years ago)
Author:
achristensen@apple.com
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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r283329 r283357  
     12021-09-30  Alex Christensen  <achristensen@webkit.org>
     2
     3        Stop making a file named null when running API tests
     4       ​https://bugs.webkit.org/show_bug.cgi?id=230191
     5
     6        r283298 did the trick, but I need to pipe stderr to /dev/null instead of null
     7
     8        * TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm:
     9        (TestWebKitAPI::TEST):
     10
    1112021-09-30  Fujii Hironori  <Hironori.Fujii@sony.com>
    212
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm

    r283316 r283357  
    455455    EXPECT_NULL(error);
    456456
    457     system("killall AdAttributionDaemon -9 2> null");
     457    system("killall AdAttributionDaemon -9 2> /dev/null");
    458458
    459459    auto plist = testDaemonPList(tempDir);
Note: See TracChangeset for help on using the changeset viewer.