Skip to content

Commit

Permalink
Disable security descriptor in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kotauskas committed Apr 2, 2024
1 parent 52a9d80 commit 899445f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/os/windows/local_socket_security_descriptor.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![cfg(not(ci))]

use crate::{
local_socket::{traits::Stream as _, ListenerOptions, Stream},
os::windows::{
Expand Down Expand Up @@ -104,7 +106,7 @@ fn local_socket_security_descriptor() -> TestResult {
.opname("query of own executable's security descriptor")?
};
sd.serialize(SECINFO, |s| {
eprintln!("SDDL of the running executable\t: {}", s.display());
eprintln!("SDDL of the running executable: {}", s.display());
})
.opname("serialize")?;

Expand Down

0 comments on commit 899445f

Please sign in to comment.