diff --git a/src/uu/dd/src/dd_unit_tests/block_unblock_tests.rs b/src/uu/dd/src/dd_unit_tests/block_unblock_tests.rs index ca633906e..35dda92eb 100644 --- a/src/uu/dd/src/dd_unit_tests/block_unblock_tests.rs +++ b/src/uu/dd/src/dd_unit_tests/block_unblock_tests.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; const NL: u8 = b'\n'; @@ -86,7 +88,7 @@ fn block_test_no_nl_trunc() { let buf = vec![0u8, 1u8, 2u8, 3u8, 4u8]; let res = block(buf, 4, &mut rs); - // Commented section should be truncated and appear for reference only. + // Commented section(s) should be truncated and appear for reference only. assert_eq!(res, vec![vec![0u8, 1u8, 2u8, 3u8 /*, 4u8*/],]); assert_eq!(rs.records_truncated, 1); } @@ -102,7 +104,7 @@ fn block_test_nl_gt_cbs_trunc() { assert_eq!( res, vec![ - // Commented lines should be truncated and appear for reference only. + // Commented section(s) should be truncated and appear for reference only. vec![0u8, 1u8, 2u8, 3u8], // vec![4u8, SPACE, SPACE, SPACE], vec![0u8, 1u8, 2u8, 3u8], @@ -227,7 +229,7 @@ fn block_test_double_surrounded_nl_double_trunc() { assert_eq!( res, vec![ - // Commented section should be truncated and appear for reference only. + // Commented section(s) should be truncated and appear for reference only. vec![0u8, 1u8, 2u8, 3u8], vec![SPACE, SPACE, SPACE, SPACE], vec![4u8, 5u8, 6u8, 7u8 /*, 8u8*/], diff --git a/src/uu/dd/src/dd_unit_tests/conv_sync_tests.rs b/src/uu/dd/src/dd_unit_tests/conv_sync_tests.rs index 945fbe7af..7d7c7d879 100644 --- a/src/uu/dd/src/dd_unit_tests/conv_sync_tests.rs +++ b/src/uu/dd/src/dd_unit_tests/conv_sync_tests.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; macro_rules! make_sync_test ( diff --git a/src/uu/dd/src/dd_unit_tests/conversion_tests.rs b/src/uu/dd/src/dd_unit_tests/conversion_tests.rs index d3a9229b6..163d77e7e 100644 --- a/src/uu/dd/src/dd_unit_tests/conversion_tests.rs +++ b/src/uu/dd/src/dd_unit_tests/conversion_tests.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; macro_rules! make_conv_test ( diff --git a/src/uu/dd/src/dd_unit_tests/mod.rs b/src/uu/dd/src/dd_unit_tests/mod.rs index 90ef00eaf..f3f0858e7 100644 --- a/src/uu/dd/src/dd_unit_tests/mod.rs +++ b/src/uu/dd/src/dd_unit_tests/mod.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; mod block_unblock_tests; diff --git a/src/uu/dd/src/dd_unit_tests/sanity_tests.rs b/src/uu/dd/src/dd_unit_tests/sanity_tests.rs index 1d0276cb3..9d1c126b0 100644 --- a/src/uu/dd/src/dd_unit_tests/sanity_tests.rs +++ b/src/uu/dd/src/dd_unit_tests/sanity_tests.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; const DST_PLACEHOLDER: Vec = Vec::new(); diff --git a/src/uu/dd/src/parseargs/unit_tests.rs b/src/uu/dd/src/parseargs/unit_tests.rs index 7a6fefb5a..35dcdf8e0 100644 --- a/src/uu/dd/src/parseargs/unit_tests.rs +++ b/src/uu/dd/src/parseargs/unit_tests.rs @@ -1,3 +1,5 @@ +// spell-checker:ignore fname, tname, fpath, specfile, testfile, unspec, ifile, ofile, outfile, fullblock, urand, fileio + use super::*; use crate::StatusLevel;