Disable libafl_qemu tests (#3032)

* llvm upd

* mmmmm

* THIS LANGUAGE IS A JOKE
This commit is contained in:
Dongjia "toka" Zhang 2025-02-28 18:38:23 +01:00 committed by GitHub
parent e864bc28b1
commit 86d6fa005e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -120,10 +120,10 @@ jobs:
# ---- build normal and examples ----
- name: Run a normal build
run: cargo build --verbose
- name: Run libafl_qemu usermode tests
run: cd libafl_qemu && cargo test
- name: Run libafl_qemu systemmode tests
run: cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
# - name: Run libafl_qemu usermode tests
# run: cd libafl_qemu && cargo test
# - name: Run libafl_qemu systemmode tests
# run: cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
- name: Build examples
run: cargo build --examples --verbose

View File

@ -327,7 +327,7 @@ class DDGInstrModulePass : public PassInfoMixin<DDGInstrModulePass> {
// GEP)
BasicBlock &EntryBB = F.getEntryBlock();
Instruction *FirstInst = EntryBB.getFirstNonPHIOrDbg();
Instruction *FirstInst = &*EntryBB.getFirstNonPHIOrDbg();
// First we add the function params to track the dataflow
for (Function::arg_iterator arg_it = F.arg_begin(); arg_it != F.arg_end();