Skip to content

Commit 141f3f3

Browse files
committed
xxx
1 parent ed54e71 commit 141f3f3

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

Cargo.lock

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ uefi-raw = { version = "~0.11", default-features = false }
3030

3131
# Dependencies for integration tests
3232
anyhow = { version = "1.0", default-features = false }
33-
multiboot = { version = "0.8", default-features = false }
3433
elf_rs = { version = "0.3", default-features = false }
3534
good_memory_allocator = { version = "0.1", default-features = false }
3635
integration-test-util = { path = "./integration-test/bins/util" }

integration-test/bins/multiboot2_chainloader/src/loader.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ fn assert_load_segment_fits_into_memory(
3636
.iter()
3737
.find(|(a_start, a_size)| start >= *a_start && end <= a_start + a_size);
3838
if let Some(range) = range {
39-
debug!("Can load load segment (0x{start:x?}, {size:x?}) into free memory area {range:#x?}");
39+
debug!("Can load load segment ({start:#x?}, {size:#x?}) into free memory area {range:#x?}");
4040
} else {
41-
panic!("Can't load load segment (0x{start:x?}, {size:x?}) into any area!");
41+
panic!("Can't load load segment ({start:#x?}, {size:#x?}) into any area!");
4242
}
4343
}
4444

integration-test/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ IFS=$'\n\t'
77
DIR=$(dirname "$(realpath "$0")")
88
cd "$DIR" || exit
99

10-
BINS_DIR=bins/target/x86-unknown-none/release
10+
BINS_DIR=../target/x86-unknown-none/release-integration-test
1111
ANSI_HIGHLIGHT="\e[1;32m" # green + bold
1212
ANSI_HIGHLIGHT_ERROR="\e[1;31m" # red + bold
1313
ANSI_RESET="\e[0m"

0 commit comments

Comments
 (0)