# HG changeset patch # User Raphaël Gomès # Date 2021-02-10 21:01:23 # Node ID 40c8ae49561d5deabbc85365f65ca27ffe07997b # Parent 839cacdff91965a5619957cd5f636308b1602858 status: add test that shows that the Rust implementation has a bug Differential Revision: https://phab.mercurial-scm.org/D9976 diff --git a/tests/test-status.t b/tests/test-status.t --- a/tests/test-status.t +++ b/tests/test-status.t @@ -680,3 +680,15 @@ Make sure .hg doesn't show up even as a $ cd symlink-repo0 $ ln -s ../repo0/.hg $ hg status + +Check using include flag with pattern when status does not need to traverse +the working directory (issue6483) + + $ cd .. + $ hg init issue6483 + $ cd issue6483 + $ touch a.py b.rs + $ hg add a.py b.rs + $ hg st -aI "*.py" + A a.py + A b.rs (known-bad-output rust !)