Skip to content

Commit f720fc9

Browse files
committed
Try 3
1 parent 6664306 commit f720fc9

File tree

1 file changed

+3
-3
lines changed
  • crates/std_detect/src/detect/os/linux

1 file changed

+3
-3
lines changed

crates/std_detect/src/detect/os/linux/auxvec.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ mod tests {
215215
#[test]
216216
fn linux_rpi3() {
217217
let file = concat!(env!("CARGO_MANIFEST_DIR"), "/src/detect/test_data/linux-rpi3.auxv");
218-
eprintln!("file: {}", file);
218+
println!("file: {}", file);
219219
let v = auxv_from_file(file).unwrap();
220220
assert_eq!(v.hwcap, 4174038);
221221
assert_eq!(v.hwcap2, 16);
@@ -225,7 +225,7 @@ mod tests {
225225
#[should_panic]
226226
fn linux_macos_vb() {
227227
let file = concat!(env!("CARGO_MANIFEST_DIR"), "/src/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv");
228-
eprintln!("file: {}", file);
228+
println!("file: {}", file);
229229
let v = auxv_from_file(file).unwrap();
230230
// this file is incomplete (contains hwcap but not hwcap2), we
231231
// want to fall back to /proc/cpuinfo in this case, so
@@ -236,7 +236,7 @@ mod tests {
236236
#[test]
237237
fn linux_x64() {
238238
let file = concat!(env!("CARGO_MANIFEST_DIR"), "src/detect/test_data/linux-x64-i7-6850k.auxv");
239-
eprintln!("file: {}", file);
239+
println!("file: {}", file);
240240
let v = auxv_from_file(file).unwrap();
241241
assert_eq!(v.hwcap, 3219913727);
242242
}

0 commit comments

Comments
 (0)