From 8d11a6e2e08aac1bb4af8e2349ca7a2f73c062af Mon Sep 17 00:00:00 2001 From: Yuming Date: Thu, 6 Nov 2025 16:03:33 +0800 Subject: [PATCH 1/2] =?UTF-8?q?chore(.vscode,tools):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E9=85=8D=E7=BD=AE=E4=B8=BA=20debug=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/Cargo.toml | 4 ++-- tools/run-qemu.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index ac0a13836..4c627178d 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -141,5 +141,5 @@ debug = true # Controls whether the compiler passes `-g` # The release profile, used for `cargo build --release` [profile.release] -debug = false -# debug = true +# debug = false +debug = true diff --git a/tools/run-qemu.sh b/tools/run-qemu.sh index 92da8d602..570d327f8 100755 --- a/tools/run-qemu.sh +++ b/tools/run-qemu.sh @@ -98,7 +98,7 @@ QEMU_SERIAL="-serial file:${QEMU_SERIAL_LOG_FILE}" QEMU_DRIVE="id=disk,file=${QEMU_DISK_IMAGE},if=none" QEMU_ACCELARATE="" QEMU_DEVICES="" -# QEMU_ARGUMENT+=" -S " +QEMU_ARGUMENT+=" -S " if [ -f "${QEMU_EXT4_DISK_IMAGE}" ]; then QEMU_DRIVE+=" -drive id=ext4disk,file=${QEMU_EXT4_DISK_IMAGE},if=none,format=raw" From 61284d4b99112ec46552d6ddb5e071cff1764fd6 Mon Sep 17 00:00:00 2001 From: yuming Date: Sat, 8 Nov 2025 16:22:44 +0800 Subject: [PATCH 2/2] =?UTF-8?q?test(config/app-block):=20=E5=90=AF?= =?UTF-8?q?=E7=94=A8=20gvisor=20=E9=9B=86=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/app-blocklist.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app-blocklist.toml b/config/app-blocklist.toml index 2de01e5e4..24a93ba8c 100644 --- a/config/app-blocklist.toml +++ b/config/app-blocklist.toml @@ -63,7 +63,7 @@ log_skipped = true # 屏蔽gvisor系统调用测试 blocked_apps = [ - { name = "gvisor syscall tests", reason = "由于文件较大,因此屏蔽。如果要允许系统调用测试,则把这行取消注释即可" }, + # { name = "gvisor syscall tests", reason = "由于文件较大,因此屏蔽。如果要允许系统调用测试,则把这行取消注释即可" }, { name = "NovaShell", reason = "工具链版本有问题,应为nightly-2025-8-10" }, { name = "test_ebpf_new", reason = "2025.11.17,aya上游发版有问题,导致ci过不了,暂时禁用" }, { name = "test_ebpf_tp", reason = "2025.11.17,aya上游发版有问题,导致ci过不了,暂时禁用" },