Make is_zlib_supported always return 1
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 3 Apr 2015 11:03:07 +0000 (04:03 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 3 Apr 2015 11:03:07 +0000 (04:03 -0700)
* lib/binutils-common.exp (is_zlib_supported): Always return 1.

binutils/testsuite/ChangeLog
binutils/testsuite/lib/binutils-common.exp

index 5c85ba8a32b31b29d4ffba389ab459bcb9d5ef10..04dfa46d1c27b98fea1e0d1bba416b60e7453249 100644 (file)
@@ -1,3 +1,7 @@
+2015-04-03  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * lib/binutils-common.exp (is_zlib_supported): Always return 1.
+
 2015-04-02  Nick Clifton  <nickc@redhat.com>
 
        * binutils-all/readelf.ss-64: Move possible location of the $d
index 7540045769f29efb789831d163bdb2c2df9711c8..e989da473d85eafac98e1edded57b9d6b605fd96 100644 (file)
@@ -154,27 +154,7 @@ proc is_elf64 { binary_file } {
 
 # True if the build supports zlib compression.
 proc is_zlib_supported {} {
-
-    # This replicates the AS selection logic of dejagnu's target_assemble.
-    global AS_FOR_TARGET
-    if [info exists AS_FOR_TARGET] {
-       set AS $AS_FOR_TARGET
-    } else {
-       if {![board_info target exists assembler]} {
-           set AS [find_gas]
-       } else {
-           set AS [board_info target assembler]
-       }
-    }
-
-    set as_output [remote_exec host "$AS --help"]
-
-    set have_zlib 0
-    if {[string first "--compress-debug-sections" $as_output] >= 0} {
-       set have_zlib 1
-    }
-
-    return $have_zlib
+    return 1
 }
 
 # Compare two files line-by-line.  FILE_1 is the actual output and FILE_2