aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/macro_operators.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/macro_operators.sh b/tests/macro_operators.sh
index a6d0445..57e8564 100644
--- a/tests/macro_operators.sh
+++ b/tests/macro_operators.sh
@@ -107,3 +107,18 @@ int main() {
ASSERT_EQ(0, strcmp("FOO", BAZ));
}
EOF
+
+test_exit_code 0 <<'EOF'
+#include <helpers.h>
+
+#define CONCAT3(x, y, z) x##y##z
+#define FOO CONCAT3(, 2, 3)
+#define BAR CONCAT3(1, , 3)
+#define BAZ CONCAT3(1, 2, )
+
+int main() {
+ ASSERT_EQ(23, FOO);
+ ASSERT_EQ(13, BAR);
+ ASSERT_EQ(12, BAZ);
+}
+EOF