File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/std_detect/src/detect/os/linux Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ mod tests {
215
215
#[ test]
216
216
fn linux_rpi3( ) {
217
217
let v = auxv_from_file(
218
- "../../std_detect/arch/ detect/test_data/linux-rpi3.auxv" ,
218
+ "../../std_detect/detect/test_data/linux-rpi3.auxv" ,
219
219
) . 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 _ = auxv_from_file(
228
- "../../std_detect/arch/ detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv"
228
+ "../../std_detect/detect/test_data/macos-virtualbox-linux-x86-4850HQ.auxv"
229
229
) . 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 v = auxv_from_file(
239
- "../../std_detect/arch/ detect/test_data/linux-x64-i7-6850k.auxv" ,
239
+ "../../std_detect/detect/test_data/linux-x64-i7-6850k.auxv" ,
240
240
) . unwrap( ) ;
241
241
assert_eq!( v. hwcap, 3219913727 ) ;
242
242
}
You can’t perform that action at this time.
0 commit comments