소스 검색

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.
Brad King 10 년 전
부모
커밋
f40c19b543
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      Tests/CompileFeatures/feature_test.c

+ 10 - 0
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;
+}