Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
c22cdf78
Commit
c22cdf78
authored
Mar 28, 2018
by
Brad King
Browse files
Features: Fix CompileFeatures test checks for C
Compare the HAVE_ and EXPECT_ macros as we do for CXX.
parent
98f23da8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Tests/CompileFeatures/genex_test.c
View file @
c22cdf78
...
...
@@ -8,7 +8,7 @@
#error EXPECT_C_RESTRICT not defined
#endif
#if !
EXPECT
_C_STATIC_ASSERT
#if !
HAVE
_C_STATIC_ASSERT
#if EXPECT_C_STATIC_ASSERT
#error "Expect c_static_assert feature"
#endif
...
...
@@ -18,11 +18,17 @@
#endif
#endif
#if !EXPECT_C_FUNCTION_PROTOTYPES
#if !HAVE_C_FUNCTION_PROTOTYPES
#if EXPECT_C_FUNCTION_PROTOTYPES
#error Expect c_function_prototypes support
#endif
#else
#if !EXPECT_C_FUNCTION_PROTOTYPES
#error Expect no c_function_prototypes support
#endif
#endif
#if !
EXPECT
_C_RESTRICT
#if !
HAVE
_C_RESTRICT
#if EXPECT_C_RESTRICT
#error Expect c_restrict support
#endif
...
...
Brad King
@brad.king
mentioned in commit
5d5e1e69
·
Apr 02, 2018
mentioned in commit
5d5e1e69
mentioned in commit 5d5e1e691772ecfd9224be0afe33802f8aee3fc3
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment