aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-01-15 07:51:18 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-01-15 07:51:18 +0000
commitf617c7a36c3127b5bbe25e09aafa0d74dbab18cc (patch)
tree6fca22a6a09a91eca7ff6ade0d4c25905bebbbce
parent1b26cad749848a2b8e1806a5727d1cea1b966617 (diff)
downloadgcc-f617c7a36c3127b5bbe25e09aafa0d74dbab18cc.zip
gcc-f617c7a36c3127b5bbe25e09aafa0d74dbab18cc.tar.gz
gcc-f617c7a36c3127b5bbe25e09aafa0d74dbab18cc.tar.bz2
if-2.c: Comment out occasionally bogus test; we have an equivalent working one below it.
* gcc.dg/cpp/if-2.c: Comment out occasionally bogus test; we have an equivalent working one below it. From-SVN: r39029
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.dg/cpp/if-2.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 2ceb1ed..94814bb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-15 Neil Booth <neil@daikokuya.demon.co.uk>
+
+ * gcc.dg/cpp/if-2.c: Comment out occasionally bogus test; we
+ have an equivalent working one below it.
+
2001-01-14 Jeffrey Oldham <oldham@codesourcery.com>
* g++.old-deja/g++.ext/instantiate2.C: Add explanatory comment.
diff --git a/gcc/testsuite/gcc.dg/cpp/if-2.c b/gcc/testsuite/gcc.dg/cpp/if-2.c
index 9a00960..55e3e71 100644
--- a/gcc/testsuite/gcc.dg/cpp/if-2.c
+++ b/gcc/testsuite/gcc.dg/cpp/if-2.c
@@ -9,9 +9,11 @@
#error L'a' /* { dg-bogus "error" "wide charconst recognition 1" } */
#endif
+#if 0 /* This test doesn't work on targets with signed 16-bit wchar_t. */
#if L'\xfeed' != 0xfeed
#error 0xfeed /* { dg-bogus "error" "wide charconst recognition 2" } */
#endif
+#endif
#if L'\x1234' != 0x1234
#error 0x1234 /* { dg-bogus "error" "wide charconst recognition 3" } */