From: Kyrylo Tkachov Date: Wed, 28 Jan 2015 13:53:45 +0000 (+0000) Subject: [libstdc++][testsuite][reverted] Remove check for truncation overflow X-Git-Tag: releases/gcc-5.1.0~1306 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6d04238e0b467f4625e78f38687f7cfbf07bf59;p=thirdparty%2Fgcc.git [libstdc++][testsuite][reverted] Remove check for truncation overflow * testsuite/lib/libstdc++.exp (v3_target_compile): Remove check for unsupported. (v3_target_compile_as_c): Likewise. From-SVN: r220206 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 865e79b48da9..b33a8aaad3b8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2015-01-28 Kyrylo Tkachov + + * testsuite/lib/libstdc++.exp (v3_target_compile): Remove + check for unsupported. + (v3_target_compile_as_c): Likewise. + 2015-01-28 Richard Biener PR libstdc++/64798 diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index 05ca7d9c0445..b2f7d0030af7 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -486,12 +486,7 @@ proc v3_target_compile { source dest type options } { lappend options "timeout=[timeout_value]" set comp_output [target_compile $source $dest $type $options] - set unsupported_message [${tool}_check_unsupported_p $comp_output] - if { $unsupported_message != "" } { - unsupported "$dest: $unsupported_message" - return "" - } return $comp_output } @@ -562,12 +557,7 @@ proc v3_target_compile_as_c { source dest type options } { lappend options "timeout=[timeout_value]" set comp_output [target_compile $source $dest $type $options] - set unsupported_message [${tool}_check_unsupported_p $comp_output] - if { $unsupported_message != "" } { - unsupported "$dest: $unsupported_message" - return "" - } return $comp_output }