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 79
79
git config --global user.email "user@example.com"
80
80
git config --global user.name "User"
81
81
./y.rs prepare
82
-
83
-
84
- - name : log expected output
85
- run : cat -e regex/examples/regexdna-output.txt
86
82
87
83
- name : Build without unstable features
88
84
env :
Original file line number Diff line number Diff line change @@ -206,7 +206,8 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
206
206
. join ( "\r \n " ) ;
207
207
208
208
209
- if output != expected {
209
+ let output_matches = expected. lines ( ) . eq ( output. lines ( ) ) ;
210
+ if !output_matches {
210
211
let res_path = PathBuf :: from ( "res.txt" ) ;
211
212
fs:: write ( & res_path, & output) . unwrap ( ) ;
212
213
@@ -457,7 +458,6 @@ impl TestRunner {
457
458
full_cmd. push ( arg. to_string ( ) ) ;
458
459
}
459
460
460
- println ! ( "full_CMD: {:?}" , full_cmd) ;
461
461
let mut cmd_iter = full_cmd. into_iter ( ) ;
462
462
let first = cmd_iter. next ( ) . unwrap ( ) ;
463
463
You can’t perform that action at this time.
0 commit comments