[libstdc++][testsuite][reverted] Remove check for truncation overflow
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Wed, 28 Jan 2015 13:53:45 +0000 (13:53 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Wed, 28 Jan 2015 13:53:45 +0000 (13:53 +0000)
    * testsuite/lib/libstdc++.exp (v3_target_compile): Remove
    check for unsupported.
    (v3_target_compile_as_c): Likewise.

From-SVN: r220206

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/lib/libstdc++.exp

index 865e79b48da9eea539c6cd2d4a7f1cd04181bdaa..b33a8aaad3b8709f72b81af3d948fec7def94f0b 100644 (file)
@@ -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
index 05ca7d9c04451f172f9aadc8782e06dfd8f92f99..b2f7d0030af7963b5dacc6bb56ddb911b2b02850 100644 (file)
@@ -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
 }