aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>2015-01-28 13:53:45 +0000
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>2015-01-28 13:53:45 +0000
commitf6d04238e0b467f4625e78f38687f7cfbf07bf59 (patch)
tree88ce138ad59dbb53d1a6428fe3f3a7bba6d3ff43
parent090238ee1f3b3726c5dbd746b3ec7098fc51bb37 (diff)
downloadgcc-f6d04238e0b467f4625e78f38687f7cfbf07bf59.zip
gcc-f6d04238e0b467f4625e78f38687f7cfbf07bf59.tar.gz
gcc-f6d04238e0b467f4625e78f38687f7cfbf07bf59.tar.bz2
[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
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/testsuite/lib/libstdc++.exp10
2 files changed, 6 insertions, 10 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 865e79b..b33a8aa 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-28 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ * testsuite/lib/libstdc++.exp (v3_target_compile): Remove
+ check for unsupported.
+ (v3_target_compile_as_c): Likewise.
+
2015-01-28 Richard Biener <rguenther@suse.de>
PR libstdc++/64798
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp
index 05ca7d9..b2f7d00 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
}