Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
douglas-raillard-arm committed Jan 5, 2024
1 parent 3b84ce3 commit 5a50140
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tools/analysis/traceevent/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2178,8 +2178,8 @@ mod tests {
name: "wakeup".into(),
id: 3,
fmt: EventFmt {
print_args: vec![],
print_fmt: PrintFmtStr {
print_args: Ok(vec![]),
print_fmt: Ok(PrintFmtStr {
vbin_decoders: OnceCell::new(),
atoms: vec![
new_variable_atom!(
Expand Down Expand Up @@ -2240,8 +2240,8 @@ mod tests {
PrintAtom::Fixed("]".into()),

],
},
struct_fmt: StructFmt {
}),
struct_fmt: Ok(StructFmt {
fields: vec![
FieldFmt {
declaration: Declaration {
Expand Down Expand Up @@ -2343,7 +2343,7 @@ mod tests {
decoder: Arc::new(()),
},
]
}
})
}
}

Expand All @@ -2355,8 +2355,8 @@ mod tests {
name: "user_stack".into(),
id: 12,
fmt: EventFmt {
print_args: vec![],
print_fmt: PrintFmtStr {
print_args: Ok(vec![]),
print_fmt: Ok(PrintFmtStr {
vbin_decoders: OnceCell::new(),
atoms: vec![
PrintAtom::Fixed("\t=> ".into()),
Expand All @@ -2368,8 +2368,8 @@ mod tests {
PrintPrecision::Unmodified,
),
]
},
struct_fmt: StructFmt {
}),
struct_fmt: Ok(StructFmt {
fields: vec![
FieldFmt {
declaration: Declaration {
Expand Down Expand Up @@ -2426,7 +2426,7 @@ mod tests {
decoder: Arc::new(()),
},
]
}
})
}
}
);
Expand Down

0 comments on commit 5a50140

Please sign in to comment.