mirror of
https://github.com/reactos/CMake.git
synced 2024-12-05 02:06:34 +00:00
d9fd2f5402
Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
32 lines
703 B
C++
32 lines
703 B
C++
#ifndef TEST_DEFINE
|
|
#error Expected definition TEST_DEFINE
|
|
#endif
|
|
|
|
#ifndef NEEDS_ESCAPE
|
|
#error Expected definition NEEDS_ESCAPE
|
|
#endif
|
|
|
|
#ifdef DO_GNU_TESTS
|
|
#ifndef TEST_DEFINE_GNU
|
|
#error Expected definition TEST_DEFINE_GNU
|
|
#endif
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
return (strcmp(NEEDS_ESCAPE, "E$CAPE") == 0
|
|
#ifdef TEST_OCTOTHORPE
|
|
&& strcmp(TEST_OCTOTHORPE, "#") == 0
|
|
#endif
|
|
&&
|
|
strcmp(EXPECTED_C_COMPILER_VERSION, TEST_C_COMPILER_VERSION) == 0 &&
|
|
strcmp(EXPECTED_CXX_COMPILER_VERSION, TEST_CXX_COMPILER_VERSION) ==
|
|
0 &&
|
|
TEST_C_COMPILER_VERSION_EQUALITY == 1 &&
|
|
TEST_CXX_COMPILER_VERSION_EQUALITY == 1)
|
|
? 0
|
|
: 1;
|
|
}
|