fix(ci): update ostool to 0.23.5#1393
Merged
Merged
Conversation
Antareske
pushed a commit
to Antareske/tgoskits
that referenced
this pull request
Jun 27, 2026
Antareske
pushed a commit
to Antareske/tgoskits
that referenced
this pull request
Jun 27, 2026
luodeb
pushed a commit
that referenced
this pull request
Jun 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题
#1391 中的
qemu-smp1/tty-console-input-burst超时,根因不在 Starry 测试本身,而在 ostool 自动注入shell_init_cmd时会将长 heredoc 一次性写入 QEMU/serial stdin,容易形成输入 burst,使 guest shell 初始化命令卡在半途。ostool 上游 PR drivercraft/ostool#148 已经修复该问题:自动 shell init 输入改为分块发送,并已发布到 crates.io 的
ostool 0.23.5。修改
ostool依赖从0.23.4升级到0.23.5。Cargo.lock中对应的版本和 checksum。验证
cargo search ostool --limit 5:确认 crates.io 最新版本为0.23.5。cargo info ostool@0.23.5:确认0.23.5可从 crates.io 获取。cargo xtask clippy --package axbuild:通过,日志中使用ostool v0.23.5。cargo xtask starry test qemu --arch x86_64 -c qemu-smp1/tty-console-input-burst:通过,日志中编译ostool v0.23.5,结果PASS tty-console-input-burst/all starry qemu tests passed。Fixes #1391