Skip to content

Commit a263925

Browse files
committed
fix CI
1 parent 6d081df commit a263925

File tree

28 files changed

+128
-424
lines changed

28 files changed

+128
-424
lines changed

api/ruxos_posix_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ruxfdtable = { path = "../../modules/ruxfdtable" }
4747
ruxmm = { path = "../../modules/ruxmm", optional = true }
4848
ruxfutex = { path = "../../modules/ruxfutex", optional = true }
4949
axalloc = { path = "../../modules/axalloc", optional = true }
50-
ruxtask = { path = "../../modules/ruxtask", optional = true }
50+
ruxtask = { path = "../../modules/ruxtask", features = ["notest"], optional = true }
5151
ruxfs = { path = "../../modules/ruxfs", optional = true }
5252
ruxnet = { path = "../../modules/ruxnet", optional = true }
5353

api/ruxos_posix_api/src/imp/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct InitFsImpl;
2828

2929
#[crate_interface::impl_interface]
3030
impl ruxtask::fs::InitFs for InitFsImpl {
31-
fn init(fs: &mut ruxtask::fs::FileSystem) {
31+
fn add_stdios_to_fd_table(fs: &mut ruxtask::fs::FileSystem) {
3232
debug!("init initial process's fd_table");
3333
let fd_table = &mut fs.fd_table;
3434
fd_table.add_at(0, Arc::new(stdin()) as _).unwrap(); // stdin

apps/c/httpclient/features.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ alloc
22
paging
33
net
44
poll
5+
rtc

modules/ruxfs/tests/test_common/mod.rs

Lines changed: 0 additions & 262 deletions
This file was deleted.

modules/ruxfs/tests/test_fatfs.rs

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)