update changelog.

This commit is contained in:
Yue-Lan 2023-04-25 11:50:47 +08:00 committed by cckylin-cibot
parent 4af669dc4e
commit b8269553c3
4 changed files with 29 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
glib2.0 (2.74.5-ok3~041build2) yangtze; urgency=medium
* 屏蔽arm架构下threadtests避免构建失败问题
* 增加spawn-test的日志输出
-- Yue Lan <lanyue@kylinos.cn> Tue, 25 Apr 2023 11:49:42 +0800
glib2.0 (2.74.5-ok3~0419build1) yangtze; urgency=medium
* 添加gvdb子项目尝试解决无法远程拉取导致的编译问题

View File

@ -1,2 +1,3 @@
Modify-debian-control.patch
update-changelog.patch
update-changelog-1.patch

20
debian/patches/update-changelog-1.patch vendored Normal file
View File

@ -0,0 +1,20 @@
From: Yue-Lan <lanyue@ubuntukylin.com>
Date: Tue, 25 Apr 2023 11:50:47 +0800
Subject: update changelog.
---
glib/tests/spawn-test.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/glib/tests/spawn-test.c b/glib/tests/spawn-test.c
index e4f2efc..95975f6 100644
--- a/glib/tests/spawn-test.c
+++ b/glib/tests/spawn-test.c
@@ -110,6 +110,7 @@ test_spawn_basics (void)
NULL, &erroutput, NULL, &err);
g_assert_no_error (err);
g_assert_true (result);
+ g_test_message ("sort non-existing-file.txt error output: %s", erroutput);
#ifndef G_OS_WIN32
g_assert_true (g_str_has_prefix (erroutput, "sort: "));
g_assert_nonnull (strstr (erroutput, g_strerror (ENOENT)));

View File

@ -5,7 +5,7 @@
set -eu
NULL=
export DEB_ALLOW_FLAKY_TESTS=1
#export DEB_ALLOW_FLAKY_TESTS=1
export GIO_USE_VFS=local
export GIO_USE_VOLUME_MONITOR=unix
export XDG_RUNTIME_DIR="$AUTOPKGTEST_TMP"