From 88bee22f3b61a5b4fdae8fdfe4d5c831f254b970 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Sat, 22 Aug 2015 21:40:49 -0700 Subject: [PATCH] Rename fixup from TNotificationQueue to NotificationQueue. Summary: [Folly] Rename fixup from TNotificationQueue to NotificationQueue. hg locate 'folly/**/*.{h,cpp}' | xargs perl -pi -e 's/TNotificationQueue/NotificationQueue/g' Reviewed By: @haijunz Differential Revision: D2373334 --- folly/io/async/test/NotificationQueueTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/folly/io/async/test/NotificationQueueTest.cpp b/folly/io/async/test/NotificationQueueTest.cpp index 2bfc1365..1438ae88 100644 --- a/folly/io/async/test/NotificationQueueTest.cpp +++ b/folly/io/async/test/NotificationQueueTest.cpp @@ -572,11 +572,11 @@ TEST(NotificationQueueTest, DestroyCallbackPipe) { } /* - * Test code that creates a TNotificationQueue, then forks, and incorrectly + * Test code that creates a NotificationQueue, then forks, and incorrectly * tries to send a message to the queue from the child process. * * The child process should crash in this scenario, since the child code has a - * bug. (Older versions of TNotificationQueue didn't catch this in the child, + * bug. (Older versions of NotificationQueue didn't catch this in the child, * resulting in a crash in the parent process.) */ TEST(NotificationQueueTest, UseAfterFork) { @@ -631,7 +631,7 @@ TEST(NotificationQueueTest, UseAfterFork) { } // The child process should have crashed when it tried to call putMessage() - // on our TNotificationQueue. + // on our NotificationQueue. EXPECT_TRUE(WIFSIGNALED(childStatus)); EXPECT_EQ(SIGABRT, WTERMSIG(childStatus)); -- 2.34.1