Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
fa51fe8
tail: improve performance of piped stdin
Joining7943 Aug 22, 2022
fc1b940
gitignore: ignore big test fixtures which are used only locally
Joining7943 Aug 23, 2022
68e0131
tail: Fix spelling and imports
Joining7943 Aug 23, 2022
247fd87
tail: Fix incompatibilities with rust 1.56.1
Joining7943 Aug 23, 2022
a6c6435
tail: Revert changes to spacing around "=" in Cargo.toml
Joining7943 Aug 24, 2022
6cbccee
tests/common: Add library "random.rs" to generate random strings
Joining7943 Aug 24, 2022
e07198c
tests/tail: Restructure tests to use the new random.rs library
Joining7943 Aug 24, 2022
d63b98c
fixtures/tail: Remove random_ascii_* test fixtures
Joining7943 Aug 24, 2022
25a5cb3
tail: Fix failing tests because of -Zpanic_abort_tests but unwind use…
Joining7943 Aug 24, 2022
f1e568f
tests/tail: Remove test for insufficient memory on 32-bit systems
Joining7943 Aug 24, 2022
0667d0e
Revert "gitignore: ignore big test fixtures which are used only locally"
Joining7943 Aug 25, 2022
83930ae
tail: Fix piped input on windows not recognized as tailable
Joining7943 Aug 26, 2022
1cce6b3
Merge branch 'main' into tail-rewrite-piped-input-handling
Joining7943 Aug 27, 2022
38bc35b
Revert "tail: Fix piped input on windows not recognized as tailable"
Joining7943 Aug 27, 2022
284ef3b
tests/tail: Do not execute piped input tests on windows and android t…
Joining7943 Aug 27, 2022
76677fe
tail/chunks: Adjust BytesChunk.from_chunk() to behave like LinesChunk…
Joining7943 Aug 27, 2022
980ce07
tail/chunks: Fix missing return in in BytesChunk::from_chunk and Line…
Joining7943 Aug 27, 2022
17de1a2
tail/chunks: Add documentation for BytesChunk, LinesChunk etc.
Joining7943 Aug 27, 2022
4397df7
tail/chunks: Refactor LinesChunk to use a BytesChunk as backing buffer
Joining7943 Aug 27, 2022
65f51ec
tail/chunks: Fix formatting and linking issues in the documentation
Joining7943 Aug 27, 2022
6e1dbcf
tail: Refactor unbounded_tail and add more tests for code coverage
Joining7943 Aug 27, 2022
ada66f4
tail: Remove redundant code and add tests
Joining7943 Aug 27, 2022
b27813b
Merge branch 'main' into tail-rewrite-piped-input-handling
Joining7943 Aug 28, 2022
69aa570
tests/common: Rewrite and fix RandomString::generate_with_delimiter()…
Joining7943 Aug 28, 2022
38b6c79
tests/tail: broken pipe error: Switch off tests on macos if no output…
Joining7943 Aug 29, 2022
29169ee
tail: Apply suggested changes from review of pr #3874
Joining7943 Sep 2, 2022
c59860d
tail: Apply additional suggested changes from review of pr #3874
Joining7943 Sep 2, 2022
cbf1ece
Merge branch 'main' into tail-rewrite-piped-input-handling
Joining7943 Sep 2, 2022
6b65f0e
tail: Fix rust error in documentation
Joining7943 Sep 3, 2022
6e160b8
Merge branch 'main' into tail-rewrite-piped-input-handling
Joining7943 Sep 5, 2022
e46f89d
tests/tail: Switch off pipe tests on macos because of random failures
Joining7943 Sep 7, 2022
0b8aedc
Merge branch 'main' into tail-rewrite-piped-input-handling
Joining7943 Sep 7, 2022
997bdc1
tests/tail: Switch pipe tests on macos back on
Joining7943 Sep 8, 2022
f0319df
tests/tail: ignore stdin write errors
Joining7943 Sep 8, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/uu/tail/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ path = "src/tail.rs"
[dependencies]
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
libc = "0.2.132"
memchr = "2.5.0"
notify = { version = "=5.0.0-pre.16", features=["macos_kqueue"]}
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["ringbuffer", "lines"] }
same-file = "1.0.6"
Expand Down
Loading