File: disable-timer-test.patch

package info (click to toggle)
sbcl 2%3A2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 52,008 kB
  • sloc: lisp: 535,135; ansic: 42,629; sh: 5,737; asm: 2,406; pascal: 717; makefile: 432; python: 56; cpp: 27
file content (26 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: =?utf-8?q?S=C3=A9bastien_Villemot?= <sebastien@debian.org>
Date: Wed, 5 Feb 2020 00:00:00 +0000
Subject: Disable a test in timer.impure on all architectures

Upstream disabled it on i386, but it also fails randomly on amd64 and arm64.
(e.g. on arm64: https://ci.debian.net/data/autopkgtest/testing/arm64/s/sbcl/4152499/log.gz)

Bug: https://bugs.launchpad.net/sbcl/+bug/1221339
Bug-Debian: https://bugs.debian.org/919806
---
 tests/timer.impure.lisp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/timer.impure.lisp b/tests/timer.impure.lisp
index 0a9ae48..452fa4f 100644
--- a/tests/timer.impure.lisp
+++ b/tests/timer.impure.lisp
@@ -269,7 +269,7 @@
 
 (with-test (:name (:timer :threaded-stress)
             :skipped-on (not :sb-thread)
-            :broken-on :x86)
+            :broken-on :sbcl)
   (let ((barrier (sb-thread:make-semaphore))
         (goal 100))
     (flet ((wait-for-goal ()