fix CI QemuCmpLogHelper error. (#1429)
this was caused by using `cpu_arch = {mips,hexagon}` and `feature = [mips,hexagon]` for the same reasons
This commit is contained in:
parent
0eceafe0c5
commit
173b14258b
@ -215,11 +215,13 @@ where
|
|||||||
if self.use_cmplog.unwrap_or(false) {
|
if self.use_cmplog.unwrap_or(false) {
|
||||||
let mut hooks = QemuHooks::new(
|
let mut hooks = QemuHooks::new(
|
||||||
emulator,
|
emulator,
|
||||||
|
#[cfg(not(any(feature = "mips", feature = "hexagon")))]
|
||||||
tuple_list!(
|
tuple_list!(
|
||||||
QemuEdgeCoverageHelper::default(),
|
QemuEdgeCoverageHelper::default(),
|
||||||
#[cfg(not(any(cpu_target = "mips", cpu_target = "hexagon")))]
|
|
||||||
QemuCmpLogHelper::default(),
|
QemuCmpLogHelper::default(),
|
||||||
),
|
),
|
||||||
|
#[cfg(any(feature = "mips", feature = "hexagon"))]
|
||||||
|
tuple_list!(QemuEdgeCoverageHelper::default()),
|
||||||
);
|
);
|
||||||
|
|
||||||
let executor = QemuExecutor::new(
|
let executor = QemuExecutor::new(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user