* gcc.dg/utf-array.c: Fix syntax of dg-error stmts.
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Sep 2008 17:13:13 +0000 (17:13 +0000)
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Sep 2008 17:13:13 +0000 (17:13 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140635 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/utf-array.c

index aa736dc..5d64a37 100644 (file)
@@ -1,3 +1,7 @@
+2008-09-24  Steve Ellcey  <sje@cup.hp.com>
+
+       * gcc.dg/utf-array.c: Fix syntax of dg-error stmts.
+
 2008-09-24  Tobias Burnus  <burnus@net-b.de>
 
        PR fortran/37626
index 2db8e51..372734e 100644 (file)
@@ -16,7 +16,7 @@ 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" { target !wchar_t_char16_t_compatible } } */
+const char16_t s16_3[] = L"ab";        /* { dg-error "from incompatible" "" { target { ! wchar_t_char16_t_compatible } } } */
 
 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" } */
@@ -27,7 +27,7 @@ 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" { target !wchar_t_char32_t_compatible } } */
+const char32_t s32_3[] = L"ab";        /* { dg-error "from incompatible" "" { target { ! wchar_t_char32_t_compatible } } } */
 
 const char32_t s32_4[0] = U"ab";       /* { dg-warning "chars is too long" } */
 const char32_t s32_5[1] = U"ab";       /* { dg-warning "chars is too long" } */
@@ -36,6 +36,6 @@ const char32_t        s32_7[3] = U"ab";
 const char32_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" { target !wchar_t_char16_t_compatible } } */
-const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" { target !wchar_t_char32_t_compatible } } */
+const wchar_t  sw_1[]  = u"ab";        /* { dg-error "from incompatible" "" { target { ! wchar_t_char16_t_compatible } } } */
+const wchar_t  sw_2[]  = U"ab";        /* { dg-error "from incompatible" "" { target { ! wchar_t_char32_t_compatible } } } */
 const wchar_t  sw_3[]  = L"ab";