mirror of https://gitee.com/openkylin/glib2.0.git
update changelog.
This commit is contained in:
parent
4af669dc4e
commit
b8269553c3
|
@ -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子项目,尝试解决无法远程拉取导致的编译问题
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
Modify-debian-control.patch
|
||||
update-changelog.patch
|
||||
update-changelog-1.patch
|
||||
|
|
|
@ -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)));
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue