We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 646c88f commit ca31321Copy full SHA for ca31321
bindgen-tests/tests/tests.rs
@@ -601,12 +601,12 @@ fn test_mixed_header_and_header_contents() {
601
#[cfg(not(target_os = "windows"))]
602
fn no_system_header_includes() {
603
use std::process::Command;
604
- assert!(Command::new("./ci/no-includes.sh")
+ assert!(Command::new("../ci/no-includes.sh")
605
.current_dir(env!("CARGO_MANIFEST_DIR"))
606
.spawn()
607
- .expect("should spawn ./ci/no-includes.sh OK")
+ .expect("should spawn ../ci/no-includes.sh OK")
608
.wait()
609
- .expect("should wait for ./ci/no-includes OK")
+ .expect("should wait for ../ci/no-includes OK")
610
.success());
611
}
612
0 commit comments