From patchwork Thu Sep 10 15:09:01 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 46618 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8AF99a7000710 for ; Thu, 10 Sep 2009 15:09:09 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751483AbZIJPJE (ORCPT ); Thu, 10 Sep 2009 11:09:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751360AbZIJPJE (ORCPT ); Thu, 10 Sep 2009 11:09:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:15241 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750839AbZIJPJC (ORCPT ); Thu, 10 Sep 2009 11:09:02 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8AF950t017441; Thu, 10 Sep 2009 11:09:05 -0400 Received: from localhost.localdomain (vpn-10-65.bos.redhat.com [10.16.10.65]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8AF93ph019618; Thu, 10 Sep 2009 11:09:03 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH] KVM test: Make install test not strip binaries Date: Thu, 10 Sep 2009 12:09:01 -0300 Message-Id: <1252595341-6154-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Don't strip binaries on all supported build methods. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/kvm/kvm_install.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/kvm_install.py b/client/tests/kvm/kvm_install.py index 673445f..148513f 100755 --- a/client/tests/kvm/kvm_install.py +++ b/client/tests/kvm/kvm_install.py @@ -271,12 +271,14 @@ class GitInstaller: utils.system('make -j %s' % utils.count_cpus()) logging.info('Building KVM userspace code') os.chdir(self.userspace_srcdir) - utils.system('./configure --prefix=%s' % self.prefix) + utils.system('./configure --disable-strip --prefix=%s' % + self.prefix) utils.system('make clean') utils.system('make -j %s' % utils.count_cpus()) else: os.chdir(self.userspace_srcdir) - utils.system('./configure --prefix=%s' % self.prefix) + utils.system('./configure --disable-strip --prefix=%s' % + self.prefix) logging.info('Building KVM modules') utils.system('make clean') utils.system('make -C kernel LINUX=%s sync' % self.kernel_srcdir)