@@ -722,6 +722,16 @@ impl Execs {
722
722
self
723
723
}
724
724
725
+ pub fn enable_mac_dsym ( & mut self ) -> & mut Self {
726
+ if cfg ! ( target_os = "macos" ) {
727
+ self . env ( "CARGO_PROFILE_DEV_SPLIT_DEBUGINFO" , "packed" )
728
+ . env ( "CARGO_PROFILE_TEST_SPLIT_DEBUGINFO" , "packed" )
729
+ . env ( "CARGO_PROFILE_RELEASE_SPLIT_DEBUGINFO" , "packed" )
730
+ . env ( "CARGO_PROFILE_BENCH_SPLIT_DEBUGINFO" , "packed" ) ;
731
+ }
732
+ self
733
+ }
734
+
725
735
pub fn run ( & mut self ) {
726
736
self . ran = true ;
727
737
let p = ( & self . process_builder ) . clone ( ) . unwrap ( ) ;
@@ -788,13 +798,17 @@ impl Execs {
788
798
match res {
789
799
Ok ( out) => self . match_output ( & out) ,
790
800
Err ( e) => {
791
- let err = e. downcast_ref :: < ProcessError > ( ) ;
792
- if let Some ( & ProcessError {
793
- output : Some ( ref out) ,
801
+ if let Some ( ProcessError {
802
+ stdout : Some ( stdout) ,
803
+ stderr : Some ( stderr) ,
804
+ code,
794
805
..
795
- } ) = err
806
+ } ) = e . downcast_ref :: < ProcessError > ( )
796
807
{
797
- return self . match_output ( out) ;
808
+ return self
809
+ . match_status ( * code, stdout, stderr)
810
+ . and ( self . match_stdout ( stdout, stderr) )
811
+ . and ( self . match_stderr ( stdout, stderr) ) ;
798
812
}
799
813
Err ( format ! ( "could not exec process {}: {:?}" , process, e) )
800
814
}
@@ -803,119 +817,91 @@ impl Execs {
803
817
804
818
fn match_output ( & self , actual : & Output ) -> MatchResult {
805
819
self . verify_checks_output ( actual) ;
806
- self . match_status ( actual)
807
- . and ( self . match_stdout ( actual) )
808
- . and ( self . match_stderr ( actual) )
820
+ self . match_status ( actual. status . code ( ) , & actual . stdout , & actual . stderr )
821
+ . and ( self . match_stdout ( & actual. stdout , & actual . stderr ) )
822
+ . and ( self . match_stderr ( & actual. stdout , & actual . stderr ) )
809
823
}
810
824
811
- fn match_status ( & self , actual : & Output ) -> MatchResult {
825
+ fn match_status ( & self , code : Option < i32 > , stdout : & [ u8 ] , stderr : & [ u8 ] ) -> MatchResult {
812
826
match self . expect_exit_code {
813
827
None => Ok ( ( ) ) ,
814
- Some ( code ) if actual . status . code ( ) == Some ( code ) => Ok ( ( ) ) ,
828
+ Some ( expected ) if code == Some ( expected ) => Ok ( ( ) ) ,
815
829
Some ( _) => Err ( format ! (
816
- "exited with {}\n --- stdout\n {}\n --- stderr\n {}" ,
817
- actual . status ,
818
- String :: from_utf8_lossy( & actual . stdout) ,
819
- String :: from_utf8_lossy( & actual . stderr)
830
+ "exited with {:? }\n --- stdout\n {}\n --- stderr\n {}" ,
831
+ code ,
832
+ String :: from_utf8_lossy( & stdout) ,
833
+ String :: from_utf8_lossy( & stderr)
820
834
) ) ,
821
835
}
822
836
}
823
837
824
- fn match_stdout ( & self , actual : & Output ) -> MatchResult {
838
+ fn match_stdout ( & self , stdout : & [ u8 ] , stderr : & [ u8 ] ) -> MatchResult {
825
839
self . match_std (
826
840
self . expect_stdout . as_ref ( ) ,
827
- & actual . stdout ,
841
+ stdout,
828
842
"stdout" ,
829
- & actual . stderr ,
843
+ stderr,
830
844
MatchKind :: Exact ,
831
845
) ?;
832
846
for expect in self . expect_stdout_contains . iter ( ) {
833
- self . match_std (
834
- Some ( expect) ,
835
- & actual. stdout ,
836
- "stdout" ,
837
- & actual. stderr ,
838
- MatchKind :: Partial ,
839
- ) ?;
847
+ self . match_std ( Some ( expect) , stdout, "stdout" , stderr, MatchKind :: Partial ) ?;
840
848
}
841
849
for expect in self . expect_stderr_contains . iter ( ) {
842
- self . match_std (
843
- Some ( expect) ,
844
- & actual. stderr ,
845
- "stderr" ,
846
- & actual. stdout ,
847
- MatchKind :: Partial ,
848
- ) ?;
850
+ self . match_std ( Some ( expect) , stderr, "stderr" , stdout, MatchKind :: Partial ) ?;
849
851
}
850
852
for & ( ref expect, number) in self . expect_stdout_contains_n . iter ( ) {
851
853
self . match_std (
852
854
Some ( expect) ,
853
- & actual . stdout ,
855
+ stdout,
854
856
"stdout" ,
855
- & actual . stderr ,
857
+ stderr,
856
858
MatchKind :: PartialN ( number) ,
857
859
) ?;
858
860
}
859
861
for expect in self . expect_stdout_not_contains . iter ( ) {
860
862
self . match_std (
861
863
Some ( expect) ,
862
- & actual . stdout ,
864
+ stdout,
863
865
"stdout" ,
864
- & actual . stderr ,
866
+ stderr,
865
867
MatchKind :: NotPresent ,
866
868
) ?;
867
869
}
868
870
for expect in self . expect_stderr_not_contains . iter ( ) {
869
871
self . match_std (
870
872
Some ( expect) ,
871
- & actual . stderr ,
873
+ stderr,
872
874
"stderr" ,
873
- & actual . stdout ,
875
+ stdout,
874
876
MatchKind :: NotPresent ,
875
877
) ?;
876
878
}
877
879
for expect in self . expect_stderr_unordered . iter ( ) {
878
- self . match_std (
879
- Some ( expect) ,
880
- & actual. stderr ,
881
- "stderr" ,
882
- & actual. stdout ,
883
- MatchKind :: Unordered ,
884
- ) ?;
880
+ self . match_std ( Some ( expect) , stderr, "stderr" , stdout, MatchKind :: Unordered ) ?;
885
881
}
886
882
for expect in self . expect_neither_contains . iter ( ) {
887
883
self . match_std (
888
884
Some ( expect) ,
889
- & actual . stdout ,
885
+ stdout,
890
886
"stdout" ,
891
- & actual . stdout ,
887
+ stdout,
892
888
MatchKind :: NotPresent ,
893
889
) ?;
894
890
895
891
self . match_std (
896
892
Some ( expect) ,
897
- & actual . stderr ,
893
+ stderr,
898
894
"stderr" ,
899
- & actual . stderr ,
895
+ stderr,
900
896
MatchKind :: NotPresent ,
901
897
) ?;
902
898
}
903
899
904
900
for expect in self . expect_either_contains . iter ( ) {
905
- let match_std = self . match_std (
906
- Some ( expect) ,
907
- & actual. stdout ,
908
- "stdout" ,
909
- & actual. stdout ,
910
- MatchKind :: Partial ,
911
- ) ;
912
- let match_err = self . match_std (
913
- Some ( expect) ,
914
- & actual. stderr ,
915
- "stderr" ,
916
- & actual. stderr ,
917
- MatchKind :: Partial ,
918
- ) ;
901
+ let match_std =
902
+ self . match_std ( Some ( expect) , stdout, "stdout" , stdout, MatchKind :: Partial ) ;
903
+ let match_err =
904
+ self . match_std ( Some ( expect) , stderr, "stderr" , stderr, MatchKind :: Partial ) ;
919
905
920
906
if let ( Err ( _) , Err ( _) ) = ( match_std, match_err) {
921
907
return Err ( format ! (
@@ -928,12 +914,12 @@ impl Execs {
928
914
}
929
915
930
916
for ( with, without) in self . expect_stderr_with_without . iter ( ) {
931
- self . match_with_without ( & actual . stderr , with, without) ?;
917
+ self . match_with_without ( stderr, with, without) ?;
932
918
}
933
919
934
920
if let Some ( ref objects) = self . expect_json {
935
- let stdout = str :: from_utf8 ( & actual . stdout )
936
- . map_err ( |_| "stdout was not utf8 encoded" . to_owned ( ) ) ?;
921
+ let stdout =
922
+ str :: from_utf8 ( stdout ) . map_err ( |_| "stdout was not utf8 encoded" . to_owned ( ) ) ?;
937
923
let lines = stdout
938
924
. lines ( )
939
925
. filter ( |line| line. starts_with ( '{' ) )
@@ -952,8 +938,8 @@ impl Execs {
952
938
}
953
939
954
940
if !self . expect_json_contains_unordered . is_empty ( ) {
955
- let stdout = str :: from_utf8 ( & actual . stdout )
956
- . map_err ( |_| "stdout was not utf8 encoded" . to_owned ( ) ) ?;
941
+ let stdout =
942
+ str :: from_utf8 ( stdout ) . map_err ( |_| "stdout was not utf8 encoded" . to_owned ( ) ) ?;
957
943
let mut lines = stdout
958
944
. lines ( )
959
945
. filter ( |line| line. starts_with ( '{' ) )
@@ -980,12 +966,12 @@ impl Execs {
980
966
Ok ( ( ) )
981
967
}
982
968
983
- fn match_stderr ( & self , actual : & Output ) -> MatchResult {
969
+ fn match_stderr ( & self , stdout : & [ u8 ] , stderr : & [ u8 ] ) -> MatchResult {
984
970
self . match_std (
985
971
self . expect_stderr . as_ref ( ) ,
986
- & actual . stderr ,
972
+ stderr,
987
973
"stderr" ,
988
- & actual . stdout ,
974
+ stdout,
989
975
MatchKind :: Exact ,
990
976
)
991
977
}
0 commit comments