Skip to content

Commit

Permalink
Drop ignored tests
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Aug 15, 2022
1 parent 3f48c3b commit 724a1cd
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions intel-mkl-tool/src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,31 +282,3 @@ impl Library {
Ok(())
}
}

#[cfg(test)]
mod tests {
use super::*;

/// Seek /opt/intel in Linux system
#[ignore]
#[test]
fn seek_opt_intel() {
for cfg in Config::possibles() {
let lib = Library::seek_directory(cfg, "/opt/intel").unwrap().unwrap();
dbg!(lib.version().unwrap());
}
}

#[ignore]
#[test]
fn pkg_config() {
for cfg in Config::possibles() {
// pkg-config will not work for `mkl-*-*-iomp` cases
if cfg.parallel == Threading::OpenMP {
continue;
}
let lib = Library::pkg_config(cfg).unwrap().unwrap();
dbg!(lib.version().unwrap());
}
}
}

0 comments on commit 724a1cd

Please sign in to comment.