Skip to content

Commit 5367df9

Browse files
committed
fix compile error
1 parent 9c8739a commit 5367df9

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

arceos/api/arceos_posix_api/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ lazy_static = { version = "1.5", features = ["spin_no_std"] }
5353

5454
[build-dependencies]
5555
bindgen ={ version = "0.69" }
56+
home = "=0.5.11"

scripts/test-alt_alloc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make pflash_img
1414
make disk_img
1515

1616

17-
make A=exercises/alt_alloc/ run 2>/dev/null | tee $tmp_file
17+
make A=exercises/alt_alloc/ run | tee $tmp_file
1818

1919
output=$(tail -n1 ./$tmp_file | grep -a "$grep_content")
2020

scripts/test-print.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ make pflash_img
99
make disk_img
1010

1111

12-
make run A=exercises/print_with_color/ 2>/dev/null | tee a.txt
12+
make run A=exercises/print_with_color/ | tee a.txt
1313

1414
context=$(tail -n 20 ./a.txt )
1515

scripts/test-ramfs_rename.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make pflash_img
1414
make disk_img
1515

1616

17-
make run A=exercises/ramfs_rename/ BLK=y 2>/dev/null | tee $tmp_file
17+
make run A=exercises/ramfs_rename/ BLK=y | tee $tmp_file
1818

1919
output=$(tail -n1 ./$tmp_file | grep -a "$grep_content")
2020

scripts/test-simple_hv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ make disk_img
1515
make payload
1616
./update_disk.sh payload/skernel2/skernel2
1717

18-
make run A=exercises/simple_hv/ BLK=y 2>/dev/null | tee $tmp_file
18+
make run A=exercises/simple_hv/ BLK=y | tee $tmp_file
1919

2020
output=$(grep -a "$grep_content" $tmp_file | tail -n1 )
2121

scripts/test-support_hashmap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ make pflash_img
1313
make disk_img
1414

1515

16-
make run A=exercises/support_hashmap/ 2>/dev/null | tee $tmp_file
16+
make run A=exercises/support_hashmap/ | tee $tmp_file
1717

1818
output=$(tail -n1 ./$tmp_file | grep -a "$grep_content")
1919

scripts/test-sys_map.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make disk_img
1414
make payload
1515
./update_disk.sh payload/mapfile_c/mapfile
1616

17-
make run A=exercises/sys_map/ BLK=y 2>/dev/null | tee $tmp_file
17+
make run A=exercises/sys_map/ BLK=y | tee $tmp_file
1818

1919
output=$(grep -Ea "$grep_content" ./$tmp_file)
2020

0 commit comments

Comments
 (0)