summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGoogler <noreply@google.com>2019-06-06 12:26:01 -0700
committerShentubot <shentubot@google.com>2019-06-06 12:29:12 -0700
commit81eafb2c5e6242251618456f7e2a5657133a103c (patch)
tree468e05eef224c75f6a2767361aa92782736e41f8
parent720ec3590d9bbf6dc2f9533ed5ef2cbc0b01627a (diff)
Internal change.
PiperOrigin-RevId: 251902567
-rw-r--r--test/syscalls/linux/pipe.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/syscalls/linux/pipe.cc b/test/syscalls/linux/pipe.cc
index bce351e08..67b93ecf5 100644
--- a/test/syscalls/linux/pipe.cc
+++ b/test/syscalls/linux/pipe.cc
@@ -55,7 +55,7 @@ class PipeTest : public ::testing::TestWithParam<PipeCreator> {
FileDescriptor wfd;
public:
- static void SetUpTestCase() {
+ static void SetUpTestSuite() {
// Tests intentionally generate SIGPIPE.
TEST_PCHECK(signal(SIGPIPE, SIG_IGN) != SIG_ERR);
}
@@ -82,7 +82,7 @@ class PipeTest : public ::testing::TestWithParam<PipeCreator> {
return s1;
}
- static void TearDownTestCase() {
+ static void TearDownTestSuite() {
TEST_PCHECK(signal(SIGPIPE, SIG_DFL) != SIG_ERR);
}