Skip to content

Commit 856d887

Browse files
committed
skip library load test by default
1 parent f870433 commit 856d887

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2665,8 +2665,9 @@ mod tests {
26652665

26662666
#[cfg(target_os = "linux")]
26672667
#[test]
2668+
#[ignore]
26682669
fn test_library_load() {
2669-
// This test is implemented for linux only
2670+
// This test is implemented for linux only.
26702671
let lib_path = "test_resources/library/test_op.so";
26712672
assert!(
26722673
std::path::Path::new(lib_path).exists(),

test-all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if [[ "${version_tensorflow_sys_crate}" != "${version_tensorflow_sys_readme}" ]]
4848
fi
4949

5050
run python3 examples/mobilenetv3/create_model.py
51-
(cd test_resources/library && ./build-test-op)
51+
# TODO(#391): Re-enable: (cd test_resources/library && ./build-test-op)
5252
run cargo fmt --all -- --check
5353
run cargo test -vv -j 2
5454
run cargo test -vv -j 2 --features eager

0 commit comments

Comments
 (0)