xref: /llvm-project/libc/test/UnitTest/PlatformDefs.h (revision 330793c91d08e6ac60334e4813746db898b9407e)
1af1315c2SSiva Chandra Reddy //===-- Platform specific defines for the unittest library ------*- C++ -*-===//
2af1315c2SSiva Chandra Reddy //
3af1315c2SSiva Chandra Reddy // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4af1315c2SSiva Chandra Reddy // See https://llvm.org/LICENSE.txt for license information.
5af1315c2SSiva Chandra Reddy // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6af1315c2SSiva Chandra Reddy //
7af1315c2SSiva Chandra Reddy //===----------------------------------------------------------------------===//
8af1315c2SSiva Chandra Reddy 
9*330793c9SNick Desaulniers #ifndef LLVM_LIBC_TEST_UNITTEST_PLATFORMDEFS_H
10*330793c9SNick Desaulniers #define LLVM_LIBC_TEST_UNITTEST_PLATFORMDEFS_H
11af1315c2SSiva Chandra Reddy 
12af1315c2SSiva Chandra Reddy #if !defined(_WIN32)
13af1315c2SSiva Chandra Reddy #define ENABLE_SUBPROCESS_TESTS
14af1315c2SSiva Chandra Reddy #endif
15af1315c2SSiva Chandra Reddy 
16*330793c9SNick Desaulniers #endif // LLVM_LIBC_TEST_UNITTEST_PLATFORMDEFS_H
17