Ben Wiederhake

Results 121 issues of Ben Wiederhake

The `Code Coverage (windows-latest, windows, nightly-x86_64-pc-windows-gnu)` CI step seems to *always* fail for all PRs: ``` Run cargo nextest run --profile ci --hide-progress-bar --features=windows -p uucore -p coreutils Downloading crates...

P - Windows

When copying hardlink over itself, the backup should also be a hardlink, and its creation announced if `-v` was given. ```console $ rm -f README.md~ && cp -vlbf README.md README.md...

U - cp

Let's say we have a regular file `regularfile`, and two symlinks to it, `symlink` and `hop`. Then we have an additional symlink `indirect_symlink` which points to `hop`. For most intents...

U - cp

**Description** pyVHDLModel provides a representation for variable assignments: https://vhdl.github.io/pyVHDLModel/pyVHDLModel/pyVHDLModel.Sequential.html#pyVHDLModel.Sequential.SequentialVariableAssignment However, pyGHDL simply drops variable assignments, leaving not even an indication *where* the AST is incomplete: https://github.com/ghdl/ghdl/blob/9d905ffcdc0663dafbeee3d5d3fb49dcc2566b63/pyGHDL/dom/_Translate.py#L878 **Expected behaviour** - When...

This PR: - downgrades fts-sys and selinux-sys (erroneously upgraded in #6339) to achieve MSRV 1.70.0 again - enforces MSRV by *actually* compiling all code during CI. Note that the latter...

Trying to compile with 1.70 (= our MSRV, according to the README) and all features fails, despite the MSRV CI succeeding: ```console $ cargo +1.70.0 build --all-features warning: /home/user/workspace/coreutils-rs/src/uu/seq/Cargo.toml: unused...

`GNU test failed: tests/timeout/timeout. tests/timeout/timeout is passing on 'main'. Maybe you have to rebase?` This false positive plagues many PRs and causes CI to be red quite often. Recent examples:...

```rust #[cfg(all(unix, not(any(target_os = "macos", target_os = "redox"))))] fsxattr::apply_xattrs(to, xattrs).unwrap(); ``` https://github.com/uutils/coreutils/blob/main/src/uu/mv/src/mv.rs#L676-L677 This code panics when "moving" (copying) a file to a different filesystem, and applying the extended attrs fails....

U - mv

When moving a dir to a different filesystem, GNU `mv` first creates a new dir, and then bails out, leaving behind an empty dir: ```console $ rm -rf /tmp/foobar/ &&...

U - mv

The Code Coverage CI step on Windows is currently deactivated, because there is some issue around the crate `profiler_builtins`: #6534 After several months of wasted compute power and apparently noone...

P - Windows