File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ fn main() -> Result<()> {
6
6
let path = Path :: new ( file ! ( ) ) . parent ( ) . unwrap ( ) ;
7
7
let root_dir = path. join ( "integrations" ) ;
8
8
let mut config = Config {
9
- bless_command : Some ( "cargo test" . to_string ( ) ) ,
9
+ bless_command : Some ( "cargo test -- -- --bless " . to_string ( ) ) ,
10
10
..Config :: cargo ( root_dir. clone ( ) )
11
11
} ;
12
12
@@ -113,10 +113,6 @@ fn main() -> Result<()> {
113
113
. to_str ( )
114
114
. unwrap ( )
115
115
. ends_with ( "-fail" ) ;
116
- if cfg ! ( windows) && path. components ( ) . any ( |c| c. as_os_str ( ) == "basic-bin" ) {
117
- // on windows there's also a .pdb file, so we get additional errors that aren't there on other platforms
118
- return Some ( false ) ;
119
- }
120
116
if !path. ends_with ( "Cargo.toml" ) {
121
117
return None ;
122
118
}
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; fini
6
6
Building dependencies ... ok
7
7
tests/actual_tests/foomp.rs ... ok
8
8
9
- test result: ok. 1 passed;
9
+ test result: ok. 1 passed
10
10
You can’t perform that action at this time.
0 commit comments