1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-16 03:36:18 +00:00

Merge pull request #3740 from resistor/main

Implement wc fast paths that skip Unicode decoding.
This commit is contained in:
Sylvestre Ledru 2022-07-25 21:15:13 +02:00 committed by GitHub
commit 2fa4d6a2bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 71 additions and 36 deletions

View file

@ -104,6 +104,33 @@ fn test_utf8_chars() {
.stdout_is("442\n");
}
#[test]
fn test_utf8_bytes_chars() {
new_ucmd!()
.arg("-cm")
.pipe_in_fixture("UTF_8_weirdchars.txt")
.run()
.stdout_is(" 442 513\n");
}
#[test]
fn test_utf8_bytes_lines() {
new_ucmd!()
.arg("-cl")
.pipe_in_fixture("UTF_8_weirdchars.txt")
.run()
.stdout_is(" 25 513\n");
}
#[test]
fn test_utf8_bytes_chars_lines() {
new_ucmd!()
.arg("-cml")
.pipe_in_fixture("UTF_8_weirdchars.txt")
.run()
.stdout_is(" 25 442 513\n");
}
#[test]
fn test_utf8_chars_words() {
new_ucmd!()