utf-array.C: Fix broken merge/checkin.
authorKris Van Hees <kris.van.hees@oracle.com>
Fri, 18 Jul 2008 22:37:42 +0000 (22:37 +0000)
committerKris Van Hees <kvanhees@gcc.gnu.org>
Fri, 18 Jul 2008 22:37:42 +0000 (22:37 +0000)
2008-07-18  Kris Van Hees  <kris.van.hees@oracle.com>

       * g++.dg/ext/utf-array.C: Fix broken merge/checkin.
       * g++.dg/ext/utf-array-short-wchar.C: Idem
       * gcc.dg/utf-array.c: Idem
       * gcc.dg/utf-array-short-wchar.c: Idem

From-SVN: r137970

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/utf-array-short-wchar.C
gcc/testsuite/g++.dg/ext/utf-array.C
gcc/testsuite/gcc.dg/utf-array-short-wchar.c
gcc/testsuite/gcc.dg/utf-array.c

index 17adb437053a0089ecb69173e0c0f671a936365f..338edcd9deedadb112e36583293eb96f54ee34d9 100644 (file)
@@ -1,3 +1,10 @@
+2008-07-18  Kris Van Hees  <kris.van.hees@oracle.com>
+
+       * g++.dg/ext/utf-array.C: Fix broken merge/checkin.
+       * g++.dg/ext/utf-array-short-wchar.C: Idem
+       * gcc.dg/utf-array.c: Idem
+       * gcc.dg/utf-array-short-wchar.c: Idem
+
 2008-07-18  Joseph Myers  <joseph@codesourcery.com>
 
        * gcc.dg/fshort-wchar.c: Use -Wl,--no-wchar-size-warning on
        PR c++/36407
        * g++.dg/conversion/op5.C: New testcase.
 
+2008-07-18  Kris Van Hees  <kris.van.hees@oracle.com>
+
+       * g++.dg/ext/utf-array.C: Fix broken merge/checkin.
+       * g++.dg/ext/utf-array-short-wchar.C: Idem
+       * gcc.dg/utf-array.c: Idem
+       * gcc.dg/utf-array-short-wchar.c: Idem
+
 2008-07-18  Kris Van Hees  <kris.van.hees@oracle.com>
 
        Tests for char16_t and char32_t support.
index 7d768d307a6991d7dfea62982d43bfb09ff7119b..43ae508d64db4c64c89fed059dd8741519d2f77e 100644 (file)
@@ -34,39 +34,3 @@ const wchar_t        sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
 const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_3[]  = L"ab";
-/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
-/* Expected errors for char16_t/char32_t string literals. */
-/* { dg-do compile } */
-/* { dg-options "-std=c++0x -fshort-wchar" } */
-
-const char     s_0[]   = "ab";
-const char     s_1[]   = u"ab";        /* { dg-error "from wide string" } */
-const char     s_2[]   = U"ab";        /* { dg-error "from wide string" } */
-const char     s_3[]   = L"ab";        /* { dg-error "from wide string" } */
-
-const char16_t s16_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char16_t s16_1[] = u"ab";
-const char16_t s16_2[] = U"ab";        /* { dg-error "from incompatible" } */
-const char16_t s16_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s16_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_6[2] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_7[3] = u"ab";
-const char16_t s16_8[4] = u"ab";
-
-const char32_t s32_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char32_t s32_1[] = u"ab";        /* { dg-error "from incompatible" } */
-const char32_t s32_2[] = U"ab";
-const char32_t s32_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s32_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_6[2] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_7[3] = u"ab";
-const char16_t s32_8[4] = u"ab";
-
-const wchar_t  sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
-const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_3[]  = L"ab";
index ff6e12df46dc15cc90cc0123686146fd78316eda..65d8453d99de03192079dee93ab07b0824750796 100644 (file)
@@ -34,39 +34,3 @@ const wchar_t        sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
 const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_3[]  = L"ab";
-/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
-/* Expected errors for char16_t/char32_t string literals. */
-/* { dg-do compile } */
-/* { dg-options "-std=c++0x" } */
-
-const char     s_0[]   = "ab";
-const char     s_1[]   = u"ab";        /* { dg-error "from wide string" } */
-const char     s_2[]   = U"ab";        /* { dg-error "from wide string" } */
-const char     s_3[]   = L"ab";        /* { dg-error "from wide string" } */
-
-const char16_t s16_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char16_t s16_1[] = u"ab";
-const char16_t s16_2[] = U"ab";        /* { dg-error "from incompatible" } */
-const char16_t s16_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s16_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_6[2] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_7[3] = u"ab";
-const char16_t s16_8[4] = u"ab";
-
-const char32_t s32_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char32_t s32_1[] = u"ab";        /* { dg-error "from incompatible" } */
-const char32_t s32_2[] = U"ab";
-const char32_t s32_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s32_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_6[2] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_7[3] = u"ab";
-const char16_t s32_8[4] = u"ab";
-
-const wchar_t  sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
-const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_3[]  = L"ab";
index 3f34caa19e6c7b415a8979f2c9a1b3952d0ef4b6..7d8c319d99a203c1460662c4b2ecc2310b307b8c 100644 (file)
@@ -39,44 +39,3 @@ const wchar_t        sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
 const wchar_t  sw_1[]  = u"ab";
 const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_3[]  = L"ab";
-/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
-/* Expected errors for char16_t/char32_t string literals. */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99 -fshort-wchar" } */
-
-#include <wchar.h>
-
-typedef short unsigned int     char16_t;
-typedef unsigned int           char32_t;
-
-const char     s_0[]   = "ab";
-const char     s_1[]   = u"ab";        /* { dg-error "from wide string" } */
-const char     s_2[]   = U"ab";        /* { dg-error "from wide string" } */
-const char     s_3[]   = L"ab";        /* { dg-error "from wide string" } */
-
-const char16_t s16_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char16_t s16_1[] = u"ab";
-const char16_t s16_2[] = U"ab";        /* { dg-error "from incompatible" } */
-const char16_t s16_3[] = L"ab";
-
-const char16_t s16_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_6[2] = u"ab";
-const char16_t s16_7[3] = u"ab";
-const char16_t s16_8[4] = u"ab";
-
-const char32_t s32_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char32_t s32_1[] = u"ab";        /* { dg-error "from incompatible" } */
-const char32_t s32_2[] = U"ab";
-const char32_t s32_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s32_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_6[2] = u"ab";
-const char16_t s32_7[3] = u"ab";
-const char16_t s32_8[4] = u"ab";
-
-const wchar_t  sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
-const wchar_t  sw_1[]  = u"ab";
-const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_3[]  = L"ab";
index 0e36e0db6079ecfc9d5570376b4208be892bd1f6..50a29fe9375935e7b889a4e55ec7fb69ae62f8a8 100644 (file)
@@ -39,44 +39,3 @@ const wchar_t        sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
 const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
 const wchar_t  sw_3[]  = L"ab";
-/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
-/* Expected errors for char16_t/char32_t string literals. */
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99" } */
-
-#include <wchar.h>
-
-typedef short unsigned int     char16_t;
-typedef unsigned int           char32_t;
-
-const char     s_0[]   = "ab";
-const char     s_1[]   = u"ab";        /* { dg-error "from wide string" } */
-const char     s_2[]   = U"ab";        /* { dg-error "from wide string" } */
-const char     s_3[]   = L"ab";        /* { dg-error "from wide string" } */
-
-const char16_t s16_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char16_t s16_1[] = u"ab";
-const char16_t s16_2[] = U"ab";        /* { dg-error "from incompatible" } */
-const char16_t s16_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s16_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s16_6[2] = u"ab";
-const char16_t s16_7[3] = u"ab";
-const char16_t s16_8[4] = u"ab";
-
-const char32_t s32_0[] = "ab";         /* { dg-error "from non-wide" } */
-const char32_t s32_1[] = u"ab";        /* { dg-error "from incompatible" } */
-const char32_t s32_2[] = U"ab";
-const char32_t s32_3[] = L"ab";        /* { dg-error "from incompatible" } */
-
-const char16_t s32_4[0] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_5[1] = u"ab";       /* { dg-warning "chars is too long" } */
-const char16_t s32_6[2] = u"ab";
-const char16_t s32_7[3] = u"ab";
-const char16_t s32_8[4] = u"ab";
-
-const wchar_t  sw_0[]  = "ab";         /* { dg-error "from non-wide" } */
-const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" } */
-const wchar_t  sw_3[]  = L"ab";