From 4d1514257ed8821828a9cf743b491eddc3ab2300 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Sun, 2 Dec 2012 23:16:44 +0000 Subject: [PATCH] Added preprocessor test --- tests/pmacros.qc | 38 ++++++++++++++++++++++++++++++++++++++ tests/pmacros.tmpl | 8 ++++++++ 2 files changed, 46 insertions(+) create mode 100644 tests/pmacros.qc create mode 100644 tests/pmacros.tmpl diff --git a/tests/pmacros.qc b/tests/pmacros.qc new file mode 100644 index 0000000..1ecee8c --- /dev/null +++ b/tests/pmacros.qc @@ -0,0 +1,38 @@ +/* will never happen unless blown up */ +#ifndef GMQCC + void() main = { error-gmqcc-is-not-defined; }; +#else + const string standard = +# ifdef __STD_QCC__ + "qcc" +# else +# ifdef __STD_GMQCC__ + "gmqcc" +# else +# ifdef __STD_FTEQCC__ + "fteqcc" +# else + "unknown" +# endif +# endif +# endif + ; + const string verminor = __STD_VERSION_MINOR__; + const string vermajor = __STD_VERSION_MAJOR__; + +# define ALPHA_a "a" +# define ALPHA_b "b" +# define ALPHA_c "c" + +# define ALPHA(SEL) ALPHA_##SEL + +# define ABC ALPHA(a)##ALPHA(b)##ALPHA(c) + + void(string, ...) print = #1; + void() main = { + if (ABC == "abc") + print("ABC\n"); + if (standard != "unknown") + print("123\n"); + }; +#endif diff --git a/tests/pmacros.tmpl b/tests/pmacros.tmpl new file mode 100644 index 0000000..3f6849c --- /dev/null +++ b/tests/pmacros.tmpl @@ -0,0 +1,8 @@ +I: pmacros.qc +D: test preprocessor +T: -execute +C: -std=fteqcc +F: preprocessor failed +S: preprocessor works +M: ABC +M: 123 -- 2.39.2