From unknown Mon Jun 16 23:47:12 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#75201 <75201@debbugs.gnu.org> To: bug#75201 <75201@debbugs.gnu.org> Subject: Status: [PATCH 1/2] services: tests: Add delay for rootless Podman system test. Reply-To: bug#75201 <75201@debbugs.gnu.org> Date: Tue, 17 Jun 2025 06:47:12 +0000 retitle 75201 [PATCH 1/2] services: tests: Add delay for rootless Podman sy= stem test. reassign 75201 guix-patches submitter 75201 Giacomo Leidi severity 75201 normal tag 75201 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 30 10:45:49 2024 Received: (at submit) by debbugs.gnu.org; 30 Dec 2024 15:45:49 +0000 Received: from localhost ([127.0.0.1]:59533 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tSHxl-0000ER-GK for submit@debbugs.gnu.org; Mon, 30 Dec 2024 10:45:49 -0500 Received: from lists.gnu.org ([209.51.188.17]:52990) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tSHxj-0000EA-2x for submit@debbugs.gnu.org; Mon, 30 Dec 2024 10:45:47 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tSHxQ-0004a0-Qi for guix-patches@gnu.org; Mon, 30 Dec 2024 10:45:46 -0500 Received: from devianza.investici.org ([2c0f:f930:0:4::108]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tSHxO-0003gN-Ba for guix-patches@gnu.org; Mon, 30 Dec 2024 10:45:28 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1735573520; bh=CLytuVJRgtRsbgPWZ4kn6UxgAerM92TWaV5gvel1yZA=; h=From:To:Cc:Subject:Date:From; b=Yf/nqavDFNgjxFV+hM0sV1kYvUWwWWG+VKJyqOiZdVbJC5vzjTwwILKvHh3aPFhnA P3X5C6GuO44drHbSP1bW4RZc6K5rMMePdrX0FqjR6uWz4MGzs4NSSllZY13sNnduTa 5elo3p/qaSfe+1pq6dTgdUrr0iKrrKkRqK5NveUQ= Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4YML5r0ZCzz6vHF; Mon, 30 Dec 2024 15:45:20 +0000 (UTC) Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4YML5q4jk6z6vH5; Mon, 30 Dec 2024 15:45:19 +0000 (UTC) From: Giacomo Leidi To: guix-patches@gnu.org Subject: [PATCH 1/2] services: tests: Add delay for rootless Podman system test. Date: Mon, 30 Dec 2024 16:44:55 +0100 Message-ID: <6ef8d0e4837ab1e623afc117d94062085ef2abe8.1735573496.git.goodoldpaul@autistici.org> X-Mailer: git-send-email 2.47.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2c0f:f930:0:4::108; envelope-from=goodoldpaul@autistici.org; helo=devianza.investici.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Giacomo Leidi X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/tests/containers.scm (run-rootless-podman-test): Add 60 seconds long delay before tests are actually run. Change-Id: Ifcf70f7258f9e0886bf829884d7daedc9803352b --- gnu/tests/containers.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/tests/containers.scm b/gnu/tests/containers.scm index ba2fb22df6..047010037e 100644 --- a/gnu/tests/containers.scm +++ b/gnu/tests/containers.scm @@ -109,6 +109,9 @@ (define (run-rootless-podman-test oci-tarball) (('service response-parts ...) #t))) marionette)) + ;; Allow services to start on slower machines + (sleep 60) + (test-equal "/sys/fs/cgroup/cgroup.subtree_control content is sound" (list "cpu" "cpuset" "memory" "pids") (marionette-eval base-commit: 18463019a24a7c5acc9c2f3ddf3c0ba04a36db96 -- 2.47.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 30 10:48:15 2024 Received: (at 75201-done) by debbugs.gnu.org; 30 Dec 2024 15:48:15 +0000 Received: from localhost ([127.0.0.1]:59546 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tSI07-0000L2-3H for submit@debbugs.gnu.org; Mon, 30 Dec 2024 10:48:15 -0500 Received: from latitanza.investici.org ([82.94.249.234]:25211) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tSI04-0000Kt-IR for 75201-done@debbugs.gnu.org; Mon, 30 Dec 2024 10:48:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1735573691; bh=YSvcnSL6pExwPT0QZrcsXy8uGW6aRvG8QYvnt/2VCtY=; h=Date:To:From:From; b=T3ev6iGqB97LgNFk/J3VSapitR3fsata9dfY4KmeaNrZnY895Orsb09KreNao4ZW4 nb3iQevFR9/mxdNkCjAVYklEtU880ofqk9lAxGOomUsVwtZbJao1TzP6KsiyJlIT8u QrTOw0zLM40JrgjeNPn6JSn9QOe66r1rczdBoEfI= Received: from mx3.investici.org (unknown [127.0.0.1]) by latitanza.investici.org (Postfix) with ESMTP id 4YML972DPWzGp3d for <75201-done@debbugs.gnu.org>; Mon, 30 Dec 2024 15:48:11 +0000 (UTC) Received: from [82.94.249.234] (mx3.investici.org [82.94.249.234]) (Authenticated sender: goodoldpaul@autistici.org) by localhost (Postfix) with ESMTPSA id 4YML971dBqzGp0p for <75201-done@debbugs.gnu.org>; Mon, 30 Dec 2024 15:48:11 +0000 (UTC) Message-ID: <1cce3a17-5b2f-4ec0-b083-e77207fe22bd@autistici.org> Date: Mon, 30 Dec 2024 16:48:10 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: 75201-done@debbugs.gnu.org Content-Language: en-US From: paul Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Sorry thisĀ  was opened by mistake, I'm closing it. Apologies for the noise. Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [82.94.249.234 listed in sa-accredit.habeas.com] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [82.94.249.234 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [82.94.249.234 listed in list.dnswl.org] 1.8 MISSING_SUBJECT Missing Subject: header 0.2 NO_SUBJECT Extra score for no subject X-Debbugs-Envelope-To: 75201-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) Sorry thisĀ  was opened by mistake, I'm closing it. Apologies for the noise. From unknown Mon Jun 16 23:47:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 28 Jan 2025 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator