From af1315c28f9bab76d3c2e1492a3d41e7c48215f8 Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Mon, 6 Feb 2023 07:07:23 +0000 Subject: [libc][NFC] Move UnitTest and IntegrationTest to the 'test' directory. This part of the effort to make all test related pieces into the `test` directory. This helps is excluding test related pieces in a straight forward manner if LLVM_INCLUDE_TESTS is OFF. Future patches will also move the MPFR wrapper and testutils into the 'test' directory. --- libc/test/src/stdlib/_Exit_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/test/src/stdlib/_Exit_test.cpp') diff --git a/libc/test/src/stdlib/_Exit_test.cpp b/libc/test/src/stdlib/_Exit_test.cpp index a07034dbf310..e4a55bc29b35 100644 --- a/libc/test/src/stdlib/_Exit_test.cpp +++ b/libc/test/src/stdlib/_Exit_test.cpp @@ -9,7 +9,7 @@ #include "include/stdlib.h" #include "src/stdlib/_Exit.h" #include "src/stdlib/exit.h" -#include "utils/UnitTest/Test.h" +#include "test/UnitTest/Test.h" TEST(LlvmLibcStdlib, _Exit) { EXPECT_EXITS([] { __llvm_libc::_Exit(1); }, 1); -- cgit v1.2.3