File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed
Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -4376,20 +4376,36 @@ fn test_tabsize_formatting() {
43764376 at. touch ( "cccc" ) ;
43774377 at. touch ( "dddddddd" ) ;
43784378
4379- // Need additional options to simulate columns output.
4380-
43814379 scene
43824380 . ucmd ( )
43834381 . args ( & [ "-x" , "-w18" , "-T4" ] )
43844382 . succeeds ( )
43854383 . stdout_is ( "aaaaaaaa bbbb\n cccc\t dddddddd\n " ) ;
43864384
4385+ scene
4386+ . ucmd ( )
4387+ . args ( & [ "-C" , "-w18" , "-T4" ] )
4388+ . succeeds ( )
4389+ . stdout_is ( "aaaaaaaa cccc\n bbbb\t dddddddd\n " ) ;
4390+
4391+ scene
4392+ . ucmd ( )
4393+ . args ( & [ "-x" , "-w18" , "-T2" ] )
4394+ . succeeds ( )
4395+ . stdout_is ( "aaaaaaaa\t bbbb\n cccc\t \t \t dddddddd\n " ) ;
4396+
43874397 scene
43884398 . ucmd ( )
43894399 . args ( & [ "-C" , "-w18" , "-T2" ] )
43904400 . succeeds ( )
43914401 . stdout_is ( "aaaaaaaa\t cccc\n bbbb\t \t \t dddddddd\n " ) ;
43924402
4403+ scene
4404+ . ucmd ( )
4405+ . args ( & [ "-x" , "-w18" , "-T0" ] )
4406+ . succeeds ( )
4407+ . stdout_is ( "aaaaaaaa bbbb\n cccc dddddddd\n " ) ;
4408+
43934409 // use spaces
43944410 scene
43954411 . ucmd ( )
You can’t perform that action at this time.
0 commit comments