diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2008-05-06 21:35:33 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2008-05-06 14:35:33 -0700 |
commit | 4247363384e11f7656ffdde380c6b6fa51ef8cd4 (patch) | |
tree | c7f3802077cfbd725b50e28087e367282b35ea69 /gcc | |
parent | 68a97d242cbeacf50a83122b0b7aa32c86cebdc0 (diff) | |
download | gcc-4247363384e11f7656ffdde380c6b6fa51ef8cd4.zip gcc-4247363384e11f7656ffdde380c6b6fa51ef8cd4.tar.gz gcc-4247363384e11f7656ffdde380c6b6fa51ef8cd4.tar.bz2 |
re PR testsuite/36155 (UTF tests doesn't work on Linux)
2008-05-06 H.J. Lu <hongjiu.lu@intel.com>
PR testsuite/36155
* g++.dg/ext/utf32-4.C: Fix a typo.
From-SVN: r135008
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/ext/utf32-4.C | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c2434e7..9cd9e21 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,6 +1,11 @@ 2008-05-06 H.J. Lu <hongjiu.lu@intel.com> PR testsuite/36155 + * g++.dg/ext/utf32-4.C: Fix a typo. + +2008-05-06 H.J. Lu <hongjiu.lu@intel.com> + + PR testsuite/36155 * gcc.dg/utf32-4.c: Fix a typo. * lib/target-supports.exp (check_effective_target_4byte_wchar_t): diff --git a/gcc/testsuite/g++.dg/ext/utf32-4.C b/gcc/testsuite/g++.dg/ext/utf32-4.C index 5da2e82..744fea7 100644 --- a/gcc/testsuite/g++.dg/ext/utf32-4.C +++ b/gcc/testsuite/g++.dg/ext/utf32-4.C @@ -13,6 +13,6 @@ const static char32_t c5 = u'\u2029'; const static char32_t c6 = u'\U00064321'; /* { dg-warning "constant too long" } */ const static char32_t c7 = L'a'; const static char32_t c8 = L'\u2029'; -const static char32_t c9 = L'\U00064321'; /* { dg-warning "constant too long" { target { ! 4byte_wchar_t } } } */ +const static char32_t c9 = L'\U00064321'; /* { dg-warning "constant too long" "" { target { ! 4byte_wchar_t } } } */ int main () {} |