Skip to content

Commit 724a1cd

Browse files
committed
Drop ignored tests
1 parent 3f48c3b commit 724a1cd

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

intel-mkl-tool/src/entry.rs

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -282,31 +282,3 @@ impl Library {
282282
Ok(())
283283
}
284284
}
285-
286-
#[cfg(test)]
287-
mod tests {
288-
use super::*;
289-
290-
/// Seek /opt/intel in Linux system
291-
#[ignore]
292-
#[test]
293-
fn seek_opt_intel() {
294-
for cfg in Config::possibles() {
295-
let lib = Library::seek_directory(cfg, "/opt/intel").unwrap().unwrap();
296-
dbg!(lib.version().unwrap());
297-
}
298-
}
299-
300-
#[ignore]
301-
#[test]
302-
fn pkg_config() {
303-
for cfg in Config::possibles() {
304-
// pkg-config will not work for `mkl-*-*-iomp` cases
305-
if cfg.parallel == Threading::OpenMP {
306-
continue;
307-
}
308-
let lib = Library::pkg_config(cfg).unwrap().unwrap();
309-
dbg!(lib.version().unwrap());
310-
}
311-
}
312-
}

0 commit comments

Comments
 (0)