diff options
author | Steve Ellcey <sje@cup.hp.com> | 2008-09-24 17:13:13 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2008-09-24 17:13:13 +0000 |
commit | fbc2a50569c304e3670d0e8d2470068262451435 (patch) | |
tree | 67f39a7352029a6ce35b30a4673cdb673ac098b9 /gcc | |
parent | 2a013f05202113a3ed42f06db21b6197ba61cd5f (diff) | |
download | gcc-fbc2a50569c304e3670d0e8d2470068262451435.zip gcc-fbc2a50569c304e3670d0e8d2470068262451435.tar.gz gcc-fbc2a50569c304e3670d0e8d2470068262451435.tar.bz2 |
* gcc.dg/utf-array.c: Fix syntax of dg-error stmts.
From-SVN: r140635
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/utf-array.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index aa736dc..5d64a37 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gcc.dg/utf-array.c b/gcc/testsuite/gcc.dg/utf-array.c index 2db8e51..372734e 100644 --- a/gcc/testsuite/gcc.dg/utf-array.c +++ b/gcc/testsuite/gcc.dg/utf-array.c @@ -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"; |