aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/paste9.c
diff options
context:
space:
mode:
authorNeil Booth <neil@gcc.gnu.org>2000-09-14 21:13:10 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-09-14 21:13:10 +0000
commitec1fb90e954fb49292b3e3d941db259045c92fcf (patch)
treee05fc2ab6b26f46c8e588e85f33c631994b1a5c0 /gcc/testsuite/gcc.dg/cpp/paste9.c
parent395a451c8c4c77e238ea0cd87e7cbc0a8958697f (diff)
downloadgcc-ec1fb90e954fb49292b3e3d941db259045c92fcf.zip
gcc-ec1fb90e954fb49292b3e3d941db259045c92fcf.tar.gz
gcc-ec1fb90e954fb49292b3e3d941db259045c92fcf.tar.bz2
* paste9.c: New preprocessor ## test.
From-SVN: r36419
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/paste9.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/paste9.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/paste9.c b/gcc/testsuite/gcc.dg/cpp/paste9.c
new file mode 100644
index 0000000..35c86b4
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/cpp/paste9.c
@@ -0,0 +1,23 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc. */
+
+/* { dg-do run } */
+/* { dg-options "" } */
+
+/* Apparently older preprocessors used to fail this test. */
+
+#include <string.h>
+
+extern void abort (void);
+
+#define S(str, args...) " " str "\n", ##args
+
+int
+main()
+{
+ const char *s = S("foo");
+
+ if (strchr (s, '\n') == NULL)
+ abort ();
+
+ return 0;
+}