From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) by sourceware.org (Postfix) with ESMTPS id 1337F3858024 for ; Fri, 26 Mar 2021 13:41:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 1337F3858024 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=tdevries@suse.de X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 2D529AB8A; Fri, 26 Mar 2021 13:41:01 +0000 (UTC) Date: Fri, 26 Mar 2021 14:40:59 +0100 From: Tom de Vries To: dwz@sourceware.org, jakub@redhat.com, mark@klomp.org Subject: [committed] Run two-files-low-mem-die-limit-0.sh with -j1 Message-ID: <20210326134058.GA4137@delia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, KAM_NUMSUBJECT, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: dwz@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Dwz mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Mar 2021 13:41:03 -0000 Hi, On the buildbot we have for dwz-debian-arm64: ... child process exited abnormally FAIL: build/testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh ... AFAIU, the problem is that the test-case is grepping like this: ... egrep -q "Compressing (1|2)$" dwz.err ... expecting the grep to fail on these messages: ... Compressing 1 in low-mem mode Compressing 2 in low-mem mode ... But with -j 2 we can have the following interleaving of the messages: ... Compressing 1 in low-mem modeCompressing 2 in low-mem mode ... which makes the grep succeed. Fix this by running the test with -j1. Committed to trunk. Thanks, - Tom Run two-files-low-mem-die-limit-0.sh with -j1 2021-03-26 Tom de Vries * testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh: Run dwz with -j1. --- testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh b/testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh index 7f1e174..a3395a7 100644 --- a/testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh +++ b/testsuite/dwz.tests/two-files-low-mem-die-limit-0.sh @@ -5,6 +5,7 @@ $execs/dwz-for-test \ -l0 \ --devel-trace \ 1 2 \ + -j 1 \ 2> dwz.err if egrep -q "Compressing (1|2)$" dwz.err; then