Mike Gabriel pushed to branch master at Debian and Ubuntu MATE Packaging Team / onboard
Commits:
-
94b18eb0
by Mike Gabriel at 2024-07-24T07:54:28+02:00
-
ef947560
by Mike Gabriel at 2025-01-15T21:39:15+01:00
-
82461e90
by Bo YU at 2025-01-15T21:40:16+01:00
-
acb08f4c
by Mike Gabriel at 2025-01-15T21:41:10+01:00
3 changed files:
Changes:
1 | +onboard (1.4.1-10) unstable; urgency=medium
|
|
2 | + |
|
3 | + [ Bo YU ]
|
|
4 | + * Refresh 1013_slow-down-tests-for-riscv64.patch to increase sleep time to
|
|
5 | + pass test. (Closes: #1092871)
|
|
6 | + |
|
7 | + -- Mike Gabriel <sunweaver@debian.org> Wed, 15 Jan 2025 21:40:26 +0100
|
|
8 | + |
|
9 | +onboard (1.4.1-9) unstable; urgency=medium
|
|
10 | + |
|
11 | + * debian/patches:
|
|
12 | + + Add 1013_slow-down-tests-for-riscv64.patch. Give the unit test / onboard
|
|
13 | + startup more time before killing onboard again. Fixes unit tests on slower
|
|
14 | + architectures such as RISCV64. (Closes: #1076820). Thanks to Aurelien
|
|
15 | + Jarno for debugging this and for providing a patch.
|
|
16 | + |
|
17 | + -- Mike Gabriel <sunweaver@debian.org> Wed, 24 Jul 2024 07:54:48 +0200
|
|
18 | + |
|
1 | 19 | onboard (1.4.1-8) unstable; urgency=medium
|
2 | 20 | |
3 | 21 | * debian/patches:
|
1 | +Description: Slow down tests for riscv64. Resolves test failures due to onboard not coming up fast enough.
|
|
2 | +Author: Aurelien Jarno <aurel32@debian.org>
|
|
3 | + |
|
4 | +Index: b/Onboard/test/test_migration.py
|
|
5 | +===================================================================
|
|
6 | +--- a/Onboard/test/test_migration.py
|
|
7 | ++++ b/Onboard/test/test_migration.py
|
|
8 | +@@ -141,7 +141,7 @@
|
|
9 | + env["LANG"] = "en_US.UTF-8"
|
|
10 | +
|
|
11 | + p = subprocess.Popen(["./onboard"], env=env)
|
|
12 | +- time.sleep(1)
|
|
13 | ++ time.sleep(6)
|
|
14 | + yield p
|
|
15 | +
|
|
16 | + finally: |
... | ... | @@ -12,3 +12,4 @@ |
12 | 12 | 2002_drop-dbus-test.patch
|
13 | 13 | 1011_python-distutils-byebye.patch
|
14 | 14 | 1012_thread-state.patch
|
15 | +1013_slow-down-tests-for-riscv64.patch |