File tree 2 files changed +14
-2
lines changed
tests/integrations/basic-bin 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,10 @@ running 0 tests
3
3
4
4
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished
5
5
6
+ Building dependencies ... ok
7
+ tests/actual_tests/foomp.rs ... ok
6
8
Building dependencies ... ok
7
9
tests/actual_tests/foomp.rs ... ok
8
10
9
- test result: ok. 1 passed;
11
+ test result: ok. 2 passed;
10
12
Original file line number Diff line number Diff line change @@ -28,8 +28,18 @@ fn main() -> ui_test::color_eyre::Result<()> {
28
28
config. out_dir = tmp_dir. into ( ) ;
29
29
config. path_stderr_filter ( tmp_dir, "$$TMP" ) ;
30
30
31
+ // try with build-std
32
+ let config_build_std = config. clone ( ) ;
33
+ config. comment_defaults . base ( ) . set_custom (
34
+ "dependencies" ,
35
+ DependencyBuilder {
36
+ build_std : Some ( String :: new ( ) ) ,
37
+ ..DependencyBuilder :: default ( )
38
+ } ,
39
+ ) ;
40
+
31
41
run_tests_generic (
32
- vec ! [ config] ,
42
+ vec ! [ config, config_build_std ] ,
33
43
default_file_filter,
34
44
default_per_file_config,
35
45
// Avoid github actions, as these would end up showing up in `Cargo.stderr`
You can’t perform that action at this time.
0 commit comments