Skip to content

Commit 86d6fa0

Browse files
authored
Disable libafl_qemu tests (#3032)
* llvm upd * mmmmm * THIS LANGUAGE IS A JOKE
1 parent e864bc2 commit 86d6fa0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_and_test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ jobs:
120120
# ---- build normal and examples ----
121121
- name: Run a normal build
122122
run: cargo build --verbose
123-
- name: Run libafl_qemu usermode tests
124-
run: cd libafl_qemu && cargo test
125-
- name: Run libafl_qemu systemmode tests
126-
run: cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
123+
# - name: Run libafl_qemu usermode tests
124+
# run: cd libafl_qemu && cargo test
125+
# - name: Run libafl_qemu systemmode tests
126+
# run: cd libafl_qemu && cargo test --no-default-features --features x86_64,systemmode
127127
- name: Build examples
128128
run: cargo build --examples --verbose
129129

libafl_cc/src/ddg-instr.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ class DDGInstrModulePass : public PassInfoMixin<DDGInstrModulePass> {
327327
// GEP)
328328

329329
BasicBlock &EntryBB = F.getEntryBlock();
330-
Instruction *FirstInst = EntryBB.getFirstNonPHIOrDbg();
330+
Instruction *FirstInst = &*EntryBB.getFirstNonPHIOrDbg();
331331

332332
// First we add the function params to track the dataflow
333333
for (Function::arg_iterator arg_it = F.arg_begin(); arg_it != F.arg_end();

0 commit comments

Comments
 (0)