From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 33314C433DF for ; Fri, 15 May 2020 12:40:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F3CD42074D for ; Fri, 15 May 2020 12:40:31 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="FbqGySOo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726171AbgEOMkb (ORCPT ); Fri, 15 May 2020 08:40:31 -0400 Received: from us-smtp-1.mimecast.com ([205.139.110.61]:31972 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726097AbgEOMkb (ORCPT ); Fri, 15 May 2020 08:40:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1589546430; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JRSV/QZvGS2cVLHIigENsfB9/KD6iEh2gqdtODung4o=; b=FbqGySOosdgtcbGuMSzwIsX3BMxpG3LLsVZIoqulXAr3njr9MRj2KnZZib92wYebajMrng 6u3mbQ9VyfIyxhGvAa9OLmJHmb9z3xnIZJ06b7OkafTpU4dYWg+NV96z306rRs/OjBbRIT eX6znUdcIbOB/x4Ptb7YHmK1zFaeYs0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-284-LgzIdASmNb2iYTHrLNT7Ew-1; Fri, 15 May 2020 08:40:29 -0400 X-MC-Unique: LgzIdASmNb2iYTHrLNT7Ew-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 2615A64AD9; Fri, 15 May 2020 12:40:28 +0000 (UTC) Received: from localhost (unknown [10.40.194.253]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1583A5C241; Fri, 15 May 2020 12:40:26 +0000 (UTC) Date: Fri, 15 May 2020 14:40:25 +0200 From: Jiri Benc To: Yauheni Kaliuta Cc: bpf@vger.kernel.org, Jiri Olsa , Shuah Khan Subject: Re: [PATCH v2 2/3] selftests: fix condition in run_tests Message-ID: <20200515144025.20495d63@redhat.com> In-Reply-To: <20200515120026.113278-3-yauheni.kaliuta@redhat.com> References: <20200515120026.113278-1-yauheni.kaliuta@redhat.com> <20200515120026.113278-3-yauheni.kaliuta@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Sender: bpf-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org On Fri, 15 May 2020 15:00:25 +0300, Yauheni Kaliuta wrote: > The check if there are any files to install in case of no files > compares "X " with "X" so never false. > > Remove extra spaces. It may make sense to use make's $(if) function > here. > > Signed-off-by: Yauheni Kaliuta Acked-by: Jiri Benc