Compare commits
4 Commits
e99caed709
...
f7f17514a6
| Author | SHA1 | Date | |
|---|---|---|---|
| f7f17514a6 | |||
| eac300343d | |||
| 4c1f1bcb0e | |||
| 3ac866a907 |
@@ -4,7 +4,7 @@ on: [push]
|
|||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash -el {0}
|
shell: bash -el -o pipefail {0}
|
||||||
|
|
||||||
# fixes rare instances of git commands failing because TERM isnt set
|
# fixes rare instances of git commands failing because TERM isnt set
|
||||||
env:
|
env:
|
||||||
@@ -198,4 +198,3 @@ jobs:
|
|||||||
# negate git grep ret code because 1 means no findings
|
# negate git grep ret code because 1 means no findings
|
||||||
run: |
|
run: |
|
||||||
git grep -E 'todo!|dbg!' -- '*.rs' && exit 1 || exit 0
|
git grep -E 'todo!|dbg!' -- '*.rs' && exit 1 || exit 0
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ pub unsafe extern "C" fn LLVMFuzzerTestOneInput(input: *const u8, len: usize) ->
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// todo!()
|
|
||||||
let stdin = io::stdin();
|
let stdin = io::stdin();
|
||||||
let mut stdout = io::stdout();
|
let mut stdout = io::stdout();
|
||||||
let mut buffer = String::new();
|
let mut buffer = String::new();
|
||||||
|
|||||||
Reference in New Issue
Block a user