aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-10-09 06:16:25 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-10-09 06:16:25 +0000
commit24b9d43a6454f9a7035840c01a05069977c5161f (patch)
tree3bee3698189d7fcfe492949998a97d781ebdc619 /gcc
parent4fe9b91c45b7b0ba4b02069f821e64fd572ce950 (diff)
downloadgcc-24b9d43a6454f9a7035840c01a05069977c5161f.zip
gcc-24b9d43a6454f9a7035840c01a05069977c5161f.tar.gz
gcc-24b9d43a6454f9a7035840c01a05069977c5161f.tar.bz2
cmdlne-C.c: Update.
* gcc.dg/cpp/cmdlne-C.c: Update. * gcc.dg/cpp/cmdlne-C2.c: New. From-SVN: r46115
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/cpp/cmdlne-C.c6
-rw-r--r--gcc/testsuite/gcc.dg/cpp/cmdlne-C2.c21
3 files changed, 32 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index d608e91..612dd2f 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-09 Neil Booth <neil@daikokuya.demon.co.uk>
+
+ * gcc.dg/cpp/cmdlne-C.c: Update.
+ * gcc.dg/cpp/cmdlne-C2.c: New.
+
2001-10-08 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* gcc.c-torture/execute/20011008-3.c: New.
diff --git a/gcc/testsuite/gcc.dg/cpp/cmdlne-C.c b/gcc/testsuite/gcc.dg/cpp/cmdlne-C.c
index c89dd8b..2dafec2 100644
--- a/gcc/testsuite/gcc.dg/cpp/cmdlne-C.c
+++ b/gcc/testsuite/gcc.dg/cpp/cmdlne-C.c
@@ -29,3 +29,9 @@ fun_like (foo, bar)
/* Check OK to redefine fun_like without comments in the params. */
#define fun_like(x, y)/**/
+
+/* Check comments in macros in directives are OK. */
+#define ZERO 0 /* A trailing comment. */
+
+#if ZERO
+#endif
diff --git a/gcc/testsuite/gcc.dg/cpp/cmdlne-C2.c b/gcc/testsuite/gcc.dg/cpp/cmdlne-C2.c
new file mode 100644
index 0000000..13f5a09
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/cpp/cmdlne-C2.c
@@ -0,0 +1,21 @@
+/* Copyright (C) 2000, 2001 Free Software Foundation, Inc. */
+
+/* { dg-do preprocess } */
+/* { dg-options "-C" } */
+
+/* This tests that C++ comments are either dropped, or converted to C
+ comments in macro expansions. The + in the regexp stops it from
+ matching itself 8-)
+
+ Neil Booth, 9 Oct 2001. */
+
+#define ZERO 0 // A comment
+
+ZERO:
+
+/*
+ { dg-final { if ![file exists cmdlne-C2.i] { return } } }
+ { dg-final { if { [grep cmdlne-C2.i "c+omment:"] == "" } { return } } }
+ { dg-final { fail "cmdlne-C2.i: C++ comments in macros with -C" } }
+*/
+