##// END OF EJS Templates
tests: add an end-to-end test to show a bug in `visit_children_set`...
Arseniy Alekseyev -
r52458:95c083d2 stable
parent child Browse files
Show More
@@ -842,6 +842,12 b' Check the output'
842 C clean
842 C clean
843 C subdir/clean
843 C subdir/clean
844
844
845 $ hg status path:subdir
846 M subdir/modified
847 R subdir/removed
848 ! subdir/deleted
849 ? subdir/unknown
850
845 FIXME: it's a bug in rhg that the status below is empty:
851 FIXME: it's a bug in rhg that the status below is empty:
846
852
847 $ hg status 'glob:subdir/*'
853 $ hg status 'glob:subdir/*'
@@ -850,6 +856,14 b" FIXME: it's a bug in rhg that the status"
850 ! subdir/deleted (no-rhg !)
856 ! subdir/deleted (no-rhg !)
851 ? subdir/unknown (no-rhg !)
857 ? subdir/unknown (no-rhg !)
852
858
859 FIXME: it's a bug (both in rhg and in Python) that the status below is wrong,
860 in rhg it's empty, in Python it's missing the unknown file:
861
862 $ hg status rootfilesin:subdir
863 M subdir/modified (no-rhg !)
864 R subdir/removed (no-rhg !)
865 ! subdir/deleted (no-rhg !)
866
853 Note: `hg status some-name` creates a patternmatcher which is not supported
867 Note: `hg status some-name` creates a patternmatcher which is not supported
854 yet by the Rust implementation of status, but includematcher is supported.
868 yet by the Rust implementation of status, but includematcher is supported.
855 --include is used below for that reason
869 --include is used below for that reason
General Comments 0
You need to be logged in to leave comments. Login now