From f40c19b5433aa601cd98fabd9491edc9aaf703b7 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 21 Jan 2015 15:40:47 -0500 Subject: [PATCH] Features: Fix CompileFeatures test for C non-features Add a "feature_test.c" file corresponding to "feature_test.cpp" but for the C language. This source will be needed by C_non_features entries. --- Tests/CompileFeatures/feature_test.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Tests/CompileFeatures/feature_test.c diff --git a/Tests/CompileFeatures/feature_test.c b/Tests/CompileFeatures/feature_test.c new file mode 100644 index 000000000..4147f1fbd --- /dev/null +++ b/Tests/CompileFeatures/feature_test.c @@ -0,0 +1,10 @@ + +#define STRINGIFY_IMPL(X) #X +#define STRINGIFY(X) STRINGIFY_IMPL(X) + +#include STRINGIFY(TEST) + +int main(void) +{ + return 0; +}