summaryrefslogtreecommitdiffstats
path: root/tests/by-util/test_ls.rs
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2023-10-12 23:07:27 +0200
committerSylvestre Ledru <sylvestre@debian.org>2023-10-12 23:37:07 +0200
commit94972d45c7aa0532c3b44d2c131b4028b63f5555 (patch)
treea9094f6db84898a09cb922986c8d3e1f5ec76b03 /tests/by-util/test_ls.rs
parentf76b53d9694f3579cd5ce34cda47e52084db5f82 (diff)
ls: Document a bit tests/ls/stat-dtype.sh
Diffstat (limited to 'tests/by-util/test_ls.rs')
-rw-r--r--tests/by-util/test_ls.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/by-util/test_ls.rs b/tests/by-util/test_ls.rs
index 7d0f86298..d9c1c8740 100644
--- a/tests/by-util/test_ls.rs
+++ b/tests/by-util/test_ls.rs
@@ -3678,3 +3678,17 @@ fn test_ls_dired_complex() {
println!("Extracted filenames: {:?}", filenames);
assert_eq!(filenames, vec!["a1", "a22", "a333", "a4444", "d"]);
}
+
+#[ignore = "issue #5396"]
+#[test]
+fn test_ls_tabsize_cf() {
+ let (at, mut ucmd) = at_and_ucmd!();
+
+ at.mkdir("e");
+ at.mkdir("e/a2345");
+ at.mkdir("e/b");
+
+ ucmd.args(&["-CF", "e"])
+ .succeeds()
+ .stdout_is("a2345/\tb/\n");
+}