OSDN Git Service

* gcc.dg/cpp/20000720-1.S: Remove duplicate testcase.
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Dec 2000 22:03:57 +0000 (22:03 +0000)
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Dec 2000 22:03:57 +0000 (22:03 +0000)
        * gcc.dg/cpp/poison.c: Update.
        * gcc.dg/cpp/spacing1.c: New testcase for all spacing issues.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37928 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/cpp/20000720-1.S [deleted file]
gcc/testsuite/gcc.dg/cpp/poison.c
gcc/testsuite/gcc.dg/cpp/spacing1.c [new file with mode: 0644]

index 59f9fa1..53cbfc0 100644 (file)
@@ -1,3 +1,9 @@
+2000-12-01  Neil Booth  <neilb@earthling.net>
+
+        * gcc.dg/cpp/20000720-1.S: Remove duplicate testcase.
+        * gcc.dg/cpp/poison.c: Update.
+        * gcc.dg/cpp/spacing1.c: New testcase for all spacing issues.
+
 2000-12-01  Toon Moene  <toon@moene.indiv.nluug.nl>
 
        * g77.f-torture/execute/20001201.f: New test.
diff --git a/gcc/testsuite/gcc.dg/cpp/20000720-1.S b/gcc/testsuite/gcc.dg/cpp/20000720-1.S
deleted file mode 100644 (file)
index 82e9a84..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* { dg-do preprocess } */
-
-#define nop()          foobar
-        nop
-       call b
-
-/*
-   { dg-final { if ![file exists 20000720-1.i] { return }         } }
-   { dg-final { if \{ [grep 20000720-1.i "nop.*call"] != "" \} \{ } }
-   { dg-final {     fail "20000720-1.S: new-line preservation"    } }
-   { dg-final { \} else \{                                        } }
-   { dg-final {     pass "20000720-1.S: new-line preservation"    } }
-   { dg-final { \}                                                } }
-*/
index 79a910f..3670a76 100644 (file)
@@ -15,10 +15,10 @@ foo5                        /* { dg-error "foo5" "use of foo5" } */
 #define foo6 345       /* { dg-error "foo6" "def of foo6" } */
 #define foo6 456       /* { dg-error "foo6" "redef of foo6" } */
 #ifdef foo6            /* { dg-error "foo6" "#ifdef foo6" } */
-#error hey!  foo6 poisoned!
+#error hey!  foo6 poisoned! /* { dg-error "foo6" "poisoned identifiers" } */
 #endif
 #if defined(foo6)      /* { dg-error "foo6" "#if defined foo6" } */
-#error no, foo6 still poisoned!
+#error foo6 still poisoned! /* { dg-error "foo6" "poisoned identifiers" } */
 #else
 foo6                   /* { dg-error "foo6" "use of foo6" } */
 #endif
diff --git a/gcc/testsuite/gcc.dg/cpp/spacing1.c b/gcc/testsuite/gcc.dg/cpp/spacing1.c
new file mode 100644 (file)
index 0000000..55a8f96
--- /dev/null
@@ -0,0 +1,41 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.  */
+
+/* { dg-do preprocess } */
+
+/* This tests correct spacing of macro expansion output, as well as
+   the line it falls on.  This is quite subtle; it involves newlines
+   within macro arguments becoming spaces, but not if it turns out to
+   not be a macro invocation.  Also, multiple macro invocations spread
+   across many lines.
+
+   Neil Booth, 1 Dec 2000.  */
+
+#define str(x) #x
+#define f(x) x
+
+/* The correct output is shown here.  Note the spaces, and the way
+   everything after the invocation of f appears on the same line.
+
+f
+bar
+g "1 2" bam baz
+
+*/
+
+f
+bar
+f (g) str
+(
+1
+2
+) f
+(bam) baz
+
+/*
+   { dg-final { if ![file exists spacing1.i] { return }                   } }
+   { dg-final { if \{ [grep spacing1.i "f.*bar"] == "" \} \{              } }
+   { dg-final { if \{ [grep spacing1.i "^bar"] != "" \}   \{              } }
+   { dg-final { if \{ [grep spacing1.i "g \"1 2\" bam baz"] != "" \} \{   } }
+   { dg-final { return \} \} \}                                           } }
+   { dg-final { fail "spacing1.c: spacing and new-line preservation"      } }
+*/