We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b5201 commit 4fa8ee6Copy full SHA for 4fa8ee6
collector/src/execute.rs
@@ -880,11 +880,13 @@ impl<'a> Processor for ProfileProcessor<'a> {
880
rename(path, filepath(&zsp_dir, "Zsp.string_data"))?;
881
} else if filename_str.ends_with(".string_index") {
882
rename(path, filepath(&zsp_dir, "Zsp.string_index"))?;
883
+ } else if filename_str.ends_with(".mm_profdata") {
884
+ rename(path, filepath(&zsp_dir, "Zsp.mm_profdata"))?;
885
} else {
886
panic!("unexpected file {:?}", path);
887
}
888
- assert_eq!(num_files, 3);
889
+ assert!(num_files == 3 || num_files == 1);
890
891
// Run `summarize`.
892
let mut summarize_cmd = Command::new("summarize");
0 commit comments