tiny fixes
This commit is contained in:
parent
4c392de98d
commit
fb0d47dc2e
14
.github/workflows/build_and_test.yml
vendored
14
.github/workflows/build_and_test.yml
vendored
@ -16,7 +16,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build all features
|
||||||
run: cd libafl && cargo build --all-features --verbose
|
run: cd libafl && cargo build --all-features --verbose
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -28,20 +28,26 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Test
|
- name: Build examples
|
||||||
run: cargo build --examples --verbose
|
run: cargo build --examples --verbose
|
||||||
no-std-build:
|
no-std-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build no_std
|
||||||
run: cd libafl && cargo build --no-default-features --verbose
|
run: cd libafl && cargo build --no-default-features --verbose
|
||||||
no-std-test:
|
no-std-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Test
|
- name: Test no_std
|
||||||
run: cd libafl && cargo test --no-default-features --verbose
|
run: cd libafl && cargo test --no-default-features --verbose
|
||||||
|
fmt:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Format
|
||||||
|
run: cargo fmt -- --check
|
||||||
docs:
|
docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -20,7 +20,7 @@ Feel free to open issues or contact us directly. Thank you for your support. <3
|
|||||||
## The Core Concepts
|
## The Core Concepts
|
||||||
|
|
||||||
We're still working on the documentation. In the meantime, you can watch the Video from last year's Rc3, here:
|
We're still working on the documentation. In the meantime, you can watch the Video from last year's Rc3, here:
|
||||||
[](http://www.youtube.com/watch?v=3RWkT1Q5IV0 "Fuzzers Like LEGO")
|
[](http://www.youtube.com/watch?v=3RWkT1Q5IV0 "Fuzzers Like LEGO")
|
||||||
## Roadmap for release
|
## Roadmap for release
|
||||||
|
|
||||||
+ Minset corpus scheduler
|
+ Minset corpus scheduler
|
||||||
|
@ -13,7 +13,7 @@ fn main() {
|
|||||||
let out_dir = out_dir.to_string_lossy().to_string();
|
let out_dir = out_dir.to_string_lossy().to_string();
|
||||||
let out_dir_path = Path::new(&out_dir);
|
let out_dir_path = Path::new(&out_dir);
|
||||||
|
|
||||||
println!("cargo:rerun-if-changed=./runtime/rt.c",);
|
println!("cargo:rerun-if-changed=../libfuzzer_runtime/rt.c",);
|
||||||
println!("cargo:rerun-if-changed=harness.cc");
|
println!("cargo:rerun-if-changed=harness.cc");
|
||||||
|
|
||||||
let libpng = format!("{}/libpng-1.6.37", &out_dir);
|
let libpng = format!("{}/libpng-1.6.37", &out_dir);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user