From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 038946DE1359 for ; Tue, 22 Aug 2017 15:44:31 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.034 X-Spam-Level: X-Spam-Status: No, score=0.034 tagged_above=-999 required=5 tests=[AWL=-0.196, FREEMAIL_FORGED_FROMDOMAIN=0.249, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ysSTjwrIMWMA for ; Tue, 22 Aug 2017 15:44:29 -0700 (PDT) Received: from mail-wm0-f45.google.com (mail-wm0-f45.google.com [74.125.82.45]) by arlo.cworth.org (Postfix) with ESMTPS id 23FAD6DE133F for ; Tue, 22 Aug 2017 15:44:20 -0700 (PDT) Received: by mail-wm0-f45.google.com with SMTP id b189so3649067wmd.0 for ; Tue, 22 Aug 2017 15:44:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=BpbPay2J9CXPIriIzq3dCCSTLREplJVzfmFV4PyySbI=; b=s5+HYo2N2CXA2uDFExGvRjljzLXyDNiDkJoDCVBxgSn850x2xx8FKPnubjPItS6Zad saGl8lcFiU/DpyTAopAHPEw0fvAXg7/hr41espVS8D4+Wh+TqANGTlBgT3OSzBkcQ3uo W63mBNM3y4ClQkuWnBOZoq8pouq17D0mVRPcSunFK8ArmecUJb0U6AdeDaa/Z1RHVVOZ laAqB7MVvnaQRDBSOkig87sJyG9UK1K1cCWuaMkV4BDl/ndfGIPQEPBhZdN0K/sY4xfy p5lY1zS03+gkRIeB146hcABM7QHJR2D7JKgSgwRGMK7crR48kCMaG2fKzlc3q/cWUcrG mc0A== X-Gm-Message-State: AHYfb5hkJPNEJJuZYTQPKDpnhTCGMux3Q75pBkpVTnfn+RK2Hn17PYVc oxa3MvFFqooo3c4giqc= X-Received: by 10.28.163.196 with SMTP id m187mr552059wme.83.1503441858581; Tue, 22 Aug 2017 15:44:18 -0700 (PDT) Received: from home.thecybershadow.net ([89.28.117.31]) by smtp.gmail.com with ESMTPSA id e137sm491385wma.29.2017.08.22.15.44.17 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 22 Aug 2017 15:44:17 -0700 (PDT) From: Vladimir Panteleev To: notmuch@notmuchmail.org Cc: Vladimir Panteleev Subject: [PATCH 7/8] test: Don't attempt to build symbol-test on Cygwin Date: Tue, 22 Aug 2017 22:43:38 +0000 Message-Id: <20170822224339.22601-8-notmuch@thecybershadow.net> X-Mailer: git-send-email 2.13.3 In-Reply-To: <20170822224339.22601-1-notmuch@thecybershadow.net> References: <20170822224339.22601-1-notmuch@thecybershadow.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Aug 2017 22:44:31 -0000 From: Vladimir Panteleev The test fails to build on Cygwin; since Windows PE exports are already namespaced (by module name), the test is likely unnecessary on Windows anyway. --- test/Makefile.local | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/Makefile.local b/test/Makefile.local index 0df72c92..05fcdd6f 100644 --- a/test/Makefile.local +++ b/test/Makefile.local @@ -48,10 +48,13 @@ test_main_srcs=$(dir)/arg-test.c \ $(dir)/random-corpus.c \ $(dir)/parse-time.c \ $(dir)/smtp-dummy.c \ - $(dir)/symbol-test.cc \ $(dir)/make-db-version.cc \ $(dir)/ghost-report.cc +ifneq ($(PLATFORM),CYGWIN) +test_main_srcs+=$(dir)/symbol-test.cc +endif + test_srcs=$(test_main_srcs) $(dir)/database-test.c TEST_BINARIES := $(test_main_srcs:.c=) -- 2.13.3