@@ -215,7 +215,7 @@ mod tests {
215
215
#[ test]
216
216
fn linux_rpi3( ) {
217
217
let file = concat!( env!( "CARGO_MANIFEST_DIR" ) , "/src/detect/test_data/linux-rpi3.auxv" ) ;
218
- eprintln !( "file: {}" , file) ;
218
+ println !( "file: {}" , file) ;
219
219
let v = auxv_from_file( file) . unwrap( ) ;
220
220
assert_eq!( v. hwcap, 4174038 ) ;
221
221
assert_eq!( v. hwcap2, 16 ) ;
@@ -225,7 +225,7 @@ mod tests {
225
225
#[ should_panic]
226
226
fn linux_macos_vb( ) {
227
227
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) ;
229
229
let v = auxv_from_file( file) . unwrap( ) ;
230
230
// this file is incomplete (contains hwcap but not hwcap2), we
231
231
// want to fall back to /proc/cpuinfo in this case, so
@@ -236,7 +236,7 @@ mod tests {
236
236
#[ test]
237
237
fn linux_x64( ) {
238
238
let file = concat!( env!( "CARGO_MANIFEST_DIR" ) , "src/detect/test_data/linux-x64-i7-6850k.auxv" ) ;
239
- eprintln !( "file: {}" , file) ;
239
+ println !( "file: {}" , file) ;
240
240
let v = auxv_from_file( file) . unwrap( ) ;
241
241
assert_eq!( v. hwcap, 3219913727 ) ;
242
242
}
0 commit comments