Jared Van Bortel

Results 359 comments of Jared Van Bortel

I commented on [SR-5632](https://bugs.swift.org/browse/SR-5632). See if this command logs anything unexpected: `lldb --repl=-disable-objc-interop --one-line-before-file 'log enable lldb host'`

Did you clear the disk cache with `sync; sudo sysctl -w vm.drop_caches=3` before each invocation? With such short execution times, rmlint is probably CPU-bound, so paranoid mode can easily be...

Duplicate of #241. This was fixed in v2.9.0 released August 2019, so please update. You could try rmlint_2.9.0-2.3_amd64.deb from [here](https://launchpad.net/ubuntu/+source/rmlint/2.9.0-2.3/+build/21477596) but it may not be compatible with your version of...

It looks like since 555060fc85564333080bcd8f477b44b640b3755e there are some remaining references to `-pp`, which is no longer different from `-p`. There are a total of six in docs, this PR only...

The changelog probably shouldn't be modified and the test is intentionally using odd yet supported paranoia flags. The .po files have old translations in them that can only really be...

Related to #458: When --equal is passed, `rm_cmd_parse_equal` gets called before `rm_cmd_set_outputs`, so the `rm_fmt_clear` call is ineffective.

```diff lib/cmdline.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/cmdline.c b/lib/cmdline.c index 49c81627..b3b884c5 100644 --- a/lib/cmdline.c +++ b/lib/cmdline.c @@ -1060,6 +1060,10 @@ static bool rm_cmd_set_paths(RmSession *session, char...

The `(default)` is misleading. I think it is supposed to indicate that paranoid mode is not the default, but technically less paranoid isn't either. The levels as written in the...

STAMPFILE is only created if -k is passed, but I agree that it's confusing that -k has any effect in combination with -n, and that the file is never removed....