diff options
| author | Siva Chandra Reddy <sivachandra@google.com> | 2023-02-06 07:07:23 +0000 |
|---|---|---|
| committer | Siva Chandra Reddy <sivachandra@google.com> | 2023-02-07 19:45:51 +0000 |
| commit | af1315c28f9bab76d3c2e1492a3d41e7c48215f8 (patch) | |
| tree | c899fe8fa2e230d7a8006d553340a044405b98c9 /libc/test/src/stdlib/_Exit_test.cpp | |
| parent | d27fb5efc5f2086fa157e7d836b61bae4d5f3734 (diff) | |
[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.
Diffstat (limited to 'libc/test/src/stdlib/_Exit_test.cpp')
| -rw-r--r-- | libc/test/src/stdlib/_Exit_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
