mirror of
https://github.com/uutils/diffutils.git
synced 2026-06-10 15:48:59 -07:00
Fix end of some files
This commit is contained in:
committed by
Sylvestre Ledru
parent
a24b0c391e
commit
9a7a727da4
@@ -168,4 +168,3 @@ jobs:
|
|||||||
flags: ${{ steps.vars.outputs.CODECOV_FLAGS }}
|
flags: ${{ steps.vars.outputs.CODECOV_FLAGS }}
|
||||||
name: codecov-umbrella
|
name: codecov-umbrella
|
||||||
fail_ci_if_error: false
|
fail_ci_if_error: false
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -51,4 +51,4 @@ doc = false
|
|||||||
name = "fuzz_side"
|
name = "fuzz_side"
|
||||||
path = "fuzz_targets/fuzz_side.rs"
|
path = "fuzz_targets/fuzz_side.rs"
|
||||||
test = false
|
test = false
|
||||||
doc = false
|
doc = false
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ extern crate libfuzzer_sys;
|
|||||||
|
|
||||||
use diffutilslib::side_diff;
|
use diffutilslib::side_diff;
|
||||||
|
|
||||||
|
use diffutilslib::params::Params;
|
||||||
use std::fs::{self, File};
|
use std::fs::{self, File};
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use diffutilslib::params::Params;
|
|
||||||
|
|
||||||
fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
|
fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
|
||||||
let (original, new, /* width, tabsize, */ expand) = x;
|
let (original, new, /* width, tabsize, */ expand) = x;
|
||||||
@@ -40,4 +40,4 @@ fuzz_target!(|x: (Vec<u8>, Vec<u8>, /* usize, usize */ bool)| {
|
|||||||
.unwrap()
|
.unwrap()
|
||||||
.write_all(&output_buf)
|
.write_all(&output_buf)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user