OSDN Git Service

* c-c++-common/raw-string-1.c: Combine C and C++ raw string tests.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / raw-string-7.C
diff --git a/gcc/testsuite/g++.dg/ext/raw-string-7.C b/gcc/testsuite/g++.dg/ext/raw-string-7.C
deleted file mode 100644 (file)
index 24737bc..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-// The trailing whitespace after \ and before newline extension
-// breaks full compliance for raw strings.
-// { dg-do run { xfail *-*-* } }
-// { dg-options "-std=c++0x" }
-
-// Note, there is a single space after \ on the following line.
-const char *s0 = R"(\ 
-)";
-// { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 7 }
-
-// Note, there is a single tab after \ on the following line.
-const char *s1 = R"(\  
-)";
-// { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 12 }
-
-int
-main (void)
-{
-  if (__builtin_strcmp (s0, "\\ \n") != 0
-      || __builtin_strcmp (s1, "\\\t\n") != 0)
-    __builtin_abort ();
-  return 0;
-}