aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/errno
diff options
context:
space:
mode:
authorSiva Chandra Reddy <sivachandra@google.com>2020-01-10 13:43:20 -0800
committerSiva Chandra Reddy <sivachandra@google.com>2020-01-17 16:24:53 -0800
commitc7453fad0625be37f4b885c6cc2341fb12a66395 (patch)
tree24016ba45cb7c8b688f50368d1b403e1eff40a0e /libc/test/src/errno
parent1d568bf9605c05ff088b244d7894ab2d88da9811 (diff)
downloadllvm-c7453fad0625be37f4b885c6cc2341fb12a66395.zip
llvm-c7453fad0625be37f4b885c6cc2341fb12a66395.tar.gz
llvm-c7453fad0625be37f4b885c6cc2341fb12a66395.tar.bz2
[libc] Replace the use of gtest with a new light weight unittest framework.
Header files included wrongly using <...> are now included using the internal path names as the new unittest framework allows us to do so. Reviewers: phosek, abrachet Differential Revision: https://reviews.llvm.org/D72743
Diffstat (limited to 'libc/test/src/errno')
-rw-r--r--libc/test/src/errno/errno_test.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/test/src/errno/errno_test.cpp b/libc/test/src/errno/errno_test.cpp
index 1ca61d5..46f0c2f 100644
--- a/libc/test/src/errno/errno_test.cpp
+++ b/libc/test/src/errno/errno_test.cpp
@@ -7,8 +7,7 @@
//===----------------------------------------------------------------------===//
#include "src/errno/llvmlibc_errno.h"
-
-#include "gtest/gtest.h"
+#include "utils/UnitTest/Test.h"
TEST(ErrnoTest, Basic) {
int test_val = 123;