1272343Sngie# The last entry for any duplicate node should take precedence.
2272343Sngie
3272343Sngie.                               type=dir
4272343Sngie
5272343Sngie# directory "a" with only one entry, changing from dir to link
6272343Sngie./a                             type=dir
7272343Sngie./a/change-dir-to-link          type=dir  mode=0755
8272343Sngie./a/change-dir-to-link          type=link  mode=0755
9272343Sngie
10272343Sngie# directory "b" with only one entry, changing from link to dir
11272343Sngie./b                             type=dir
12272343Sngie./b/change-link-to-dir          type=link  mode=0755
13272343Sngie./b/change-link-to-dir          type=dir  mode=0755
14272343Sngie
15272343Sngie# directory "c" with multiple entries, one changing from dir to link
16272343Sngie./c                             type=dir
17272343Sngie./c/aaa                         type=file
18272343Sngie./c/zzz                         type=file
19272343Sngie./c/change-dir-to-link          type=dir  mode=0755
20272343Sngie./c/change-dir-to-link          type=link  mode=0755
21272343Sngie
22272343Sngie# directory "d" with multiple entries, one changing from link to dir
23272343Sngie./d                             type=dir
24272343Sngie./d/aaa                         type=file
25272343Sngie./d/zzz                         type=file
26272343Sngie./d/change-link-to-dir          type=link  mode=0755
27272343Sngie./d/change-link-to-dir          type=dir  mode=0755
28