diff --git a/completions/bash/eza b/completions/bash/eza index dbecd8a9..15494917 100644 --- a/completions/bash/eza +++ b/completions/bash/eza @@ -58,7 +58,7 @@ _eza() { # _parse_help doesn’t pick up short options when they are on the same line than long options --*) # colo[u]r isn’t parsed correctly so we filter these options out and add them by hand - parse_help=$(eza --help | grep -oE ' (--[[:alnum:]@-]+)' | tr -d ' ' | grep -v '\--colo') + parse_help=$(eza --help | grep -oE ' (--[[:alnum:]@-]+)' | tr -d ' ' | grep -v '\--colo' | grep -v '\--list-dirs') completions=$(echo '--color --colour --color-scale --colour-scale --color-scale-mode --colour-scale-mode' "$parse_help") mapfile -t COMPREPLY < <(compgen -W "$completions" -- "$cur") ;; diff --git a/completions/fish/eza.fish b/completions/fish/eza.fish index 7589c5d8..e3488239 100644 --- a/completions/fish/eza.fish +++ b/completions/fish/eza.fish @@ -52,7 +52,7 @@ complete -c eza -l group-directories-last -d "Sort directories after other files complete -c eza -l git-ignore -d "Ignore files mentioned in '.gitignore'" complete -c eza -s a -l all -d "Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories" complete -c eza -s A -l almost-all -d "Equivalent to --all; included for compatibility with `ls -A`" -complete -c eza -s d -l list-dirs -d "List directories like regular files" +complete -c eza -s d -l treat-dirs-as-files -d "List directories like regular files" complete -c eza -s L -l level -d "Limit the depth of recursion" -x -a "1 2 3 4 5 6 7 8 9" complete -c eza -s w -l width -d "Limits column output of grid, 0 implies auto-width" complete -c eza -s r -l reverse -d "Reverse the sort order" diff --git a/completions/nush/eza.nu b/completions/nush/eza.nu index 4cc43435..3830fd9f 100644 --- a/completions/nush/eza.nu +++ b/completions/nush/eza.nu @@ -25,7 +25,7 @@ export extern "eza" [ --git-ignore # Ignore files mentioned in '.gitignore' --all(-a) # Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories --almost-all(-A) # Equivalent to --all; included for compatibility with `ls -A` - --list-dirs(-d) # List directories like regular files + --treat-dirs-as-files(-d) # List directories like regular files --level(-L): string # Limit the depth of recursion --width(-w) # Limits column output of grid, 0 implies auto-width --reverse(-r) # Reverse the sort order diff --git a/completions/zsh/_eza b/completions/zsh/_eza index 6f6a4b81..9636fe25 100644 --- a/completions/zsh/_eza +++ b/completions/zsh/_eza @@ -33,7 +33,7 @@ __eza() { --git-ignore"[Ignore files mentioned in '.gitignore']" \ {-a,--all}"[Show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories]" \ {-A,--almost-all}"[Equivalent to --all; included for compatibility with \'ls -A\']" \ - {-d,--list-dirs}"[List directories like regular files]" \ + {-d,--treat-dirs-as-files}"[List directories like regular files]" \ {-D,--only-dirs}"[List only directories]" \ --no-symlinks"[Do not show symbolic links]" \ --show-symlinks"[Explictly show symbolic links: for use with '--only-dirs'| '--only-files']" \ diff --git a/man/eza.1.md b/man/eza.1.md index 28ccf261..63201c54 100644 --- a/man/eza.1.md +++ b/man/eza.1.md @@ -139,8 +139,14 @@ Use this twice to also show the ‘`.`’ and ‘`..`’ directories. `-A`, `--almost-all` : Equivalent to --all; included for compatibility with `ls -A`. -`-d`, `--list-dirs` -: List directories as regular files, rather than recursing and listing their contents. +`-d`, `--treat-dirs-as-files` +: This flag, inherited from `ls`, changes how `eza` handles directory arguments. + +: Instead of recursing into directories and listing their contents (the default behavior), it treats directories as regular files and lists information about the directory entry itself. + +: This is useful when you want to see metadata about the directory (e.g., permissions, size, modification time) rather than its contents. + +: For simply listing only directories and not files, consider using the `--only-dirs` (`-D`) option as an alternative. `-L`, `--level=DEPTH` : Limit the depth of recursion. diff --git a/powertest.yaml b/powertest.yaml index 8dbc9025..6ebf6600 100644 --- a/powertest.yaml +++ b/powertest.yaml @@ -91,12 +91,16 @@ commands: - --almost-all : ? - -d + - --treat-dirs-as-files + : + ? - null - --list-dirs : - ? - -L + ? - -L # Hidden alias - --level - : prefix: --tree + : prefix: -T values: + - 0 - 1 - 2 - 3 diff --git a/src/main.rs b/src/main.rs index 62ca1ff1..904168eb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -277,9 +277,7 @@ impl Exa<'_> { continue; } - if f.points_to_directory() - && (f.name == "." || !self.options.dir_action.treat_dirs_as_files()) - { + if f.points_to_directory() && !self.options.dir_action.treat_dirs_as_files() { trace!("matching on new Dir"); dirs.push(f.to_dir()); } else { diff --git a/src/options/dir_action.rs b/src/options/dir_action.rs index 417d686b..cf5932f8 100644 --- a/src/options/dir_action.rs +++ b/src/options/dir_action.rs @@ -18,7 +18,8 @@ impl DirAction { /// to both be present, but the `--list-dirs` flag is used separately. pub fn deduce(matches: &MatchedFlags<'_>, can_tree: bool) -> Result { let recurse = matches.has(&flags::RECURSE)?; - let as_file = matches.has(&flags::LIST_DIRS)?; + let as_file = + matches.has(&flags::TREAT_DIRS_AS_FILES)? || matches.has(&flags::LIST_DIRS)?; let tree = matches.has(&flags::TREE)?; if matches.is_strict() { @@ -30,9 +31,15 @@ impl DirAction { &flags::TREE, )); } else if recurse && as_file { - return Err(OptionsError::Conflict(&flags::RECURSE, &flags::LIST_DIRS)); + return Err(OptionsError::Conflict( + &flags::RECURSE, + &flags::TREAT_DIRS_AS_FILES, + )); } else if tree && as_file { - return Err(OptionsError::Conflict(&flags::TREE, &flags::LIST_DIRS)); + return Err(OptionsError::Conflict( + &flags::TREE, + &flags::TREAT_DIRS_AS_FILES, + )); } } @@ -93,7 +100,7 @@ mod test { static TEST_ARGS: &[&Arg] = &[ &flags::RECURSE, - &flags::LIST_DIRS, + &flags::TREAT_DIRS_AS_FILES, &flags::TREE, &flags::LEVEL, ]; @@ -110,8 +117,8 @@ mod test { test!(empty: DirAction <- []; Both => Ok(DirAction::List)); // Listing files as directories - test!(dirs_short: DirAction <- ["-d"]; Both => Ok(DirAction::AsFile)); - test!(dirs_long: DirAction <- ["--list-dirs"]; Both => Ok(DirAction::AsFile)); + test!(dirs_short: DirAction <- ["-d"]; Both => Ok(DirAction::AsFile)); + test!(dirs_long: DirAction <- ["--treat-dirs-as-files"]; Both => Ok(DirAction::AsFile)); // Recursing use self::DirAction::Recurse; @@ -126,12 +133,12 @@ mod test { test!(rec_short_tree: DirAction <- ["-TR"]; Both => Ok(Recurse(RecurseOptions { tree: true, max_depth: None }))); // Overriding --list-dirs, --recurse, and --tree - test!(dirs_recurse: DirAction <- ["--list-dirs", "--recurse"]; Last => Ok(Recurse(RecurseOptions { tree: false, max_depth: None }))); - test!(dirs_tree: DirAction <- ["--list-dirs", "--tree"]; Last => Ok(Recurse(RecurseOptions { tree: true, max_depth: None }))); + test!(dirs_recurse: DirAction <- ["--treat-dirs-as-files", "--recurse"]; Last => Ok(Recurse(RecurseOptions { tree: false, max_depth: None }))); + test!(dirs_tree: DirAction <- ["--treat-dirs-as-files", "--tree"]; Last => Ok(Recurse(RecurseOptions { tree: true, max_depth: None }))); test!(just_level: DirAction <- ["--level=4"]; Last => Ok(DirAction::List)); - test!(dirs_recurse_2: DirAction <- ["--list-dirs", "--recurse"]; Complain => Err(OptionsError::Conflict(&flags::RECURSE, &flags::LIST_DIRS))); - test!(dirs_tree_2: DirAction <- ["--list-dirs", "--tree"]; Complain => Err(OptionsError::Conflict(&flags::TREE, &flags::LIST_DIRS))); + test!(dirs_recurse_2: DirAction <- ["--treat-dirs-as-files", "--recurse"]; Complain => Err(OptionsError::Conflict(&flags::RECURSE, &flags::TREAT_DIRS_AS_FILES))); + test!(dirs_tree_2: DirAction <- ["--treat-dirs-as-files", "--tree"]; Complain => Err(OptionsError::Conflict(&flags::TREE, &flags::TREAT_DIRS_AS_FILES))); test!(just_level_2: DirAction <- ["--level=4"]; Complain => Err(OptionsError::Useless2(&flags::LEVEL, &flags::RECURSE, &flags::TREE))); // Overriding levels diff --git a/src/options/flags.rs b/src/options/flags.rs index 581fd7e6..53eef54c 100644 --- a/src/options/flags.rs +++ b/src/options/flags.rs @@ -38,20 +38,22 @@ const SCALES: Values = &["all", "size", "age"]; const COLOR_SCALE_MODES: Values = &["fixed", "gradient"]; // filtering and sorting options -pub static ALL: Arg = Arg { short: Some(b'a'), long: "all", takes_value: TakesValue::Forbidden }; -pub static ALMOST_ALL: Arg = Arg { short: Some(b'A'), long: "almost-all", takes_value: TakesValue::Forbidden }; -pub static LIST_DIRS: Arg = Arg { short: Some(b'd'), long: "list-dirs", takes_value: TakesValue::Forbidden }; -pub static LEVEL: Arg = Arg { short: Some(b'L'), long: "level", takes_value: TakesValue::Necessary(None) }; -pub static REVERSE: Arg = Arg { short: Some(b'r'), long: "reverse", takes_value: TakesValue::Forbidden }; -pub static SORT: Arg = Arg { short: Some(b's'), long: "sort", takes_value: TakesValue::Necessary(Some(SORTS)) }; -pub static IGNORE_GLOB: Arg = Arg { short: Some(b'I'), long: "ignore-glob", takes_value: TakesValue::Necessary(None) }; -pub static GIT_IGNORE: Arg = Arg { short: None, long: "git-ignore", takes_value: TakesValue::Forbidden }; -pub static DIRS_FIRST: Arg = Arg { short: None, long: "group-directories-first", takes_value: TakesValue::Forbidden }; -pub static DIRS_LAST: Arg = Arg { short: None, long: "group-directories-last", takes_value: TakesValue::Forbidden }; -pub static ONLY_DIRS: Arg = Arg { short: Some(b'D'), long: "only-dirs", takes_value: TakesValue::Forbidden }; -pub static ONLY_FILES: Arg = Arg { short: Some(b'f'), long: "only-files", takes_value: TakesValue::Forbidden }; -pub static NO_SYMLINKS: Arg = Arg { short: None, long: "no-symlinks", takes_value: TakesValue::Forbidden }; -pub static SHOW_SYMLINKS: Arg = Arg { short: None, long: "show-symlinks", takes_value: TakesValue::Forbidden }; +pub static ALL: Arg = Arg { short: Some(b'a'), long: "all", takes_value: TakesValue::Forbidden }; +pub static ALMOST_ALL: Arg = Arg { short: Some(b'A'), long: "almost-all", takes_value: TakesValue::Forbidden }; +pub static TREAT_DIRS_AS_FILES: Arg = Arg { short: Some(b'd'), long: "treat-dirs-as-files", takes_value: TakesValue::Forbidden }; +pub static LIST_DIRS: Arg = Arg { short: None, long: "list-dirs", takes_value: TakesValue::Forbidden }; +pub static LEVEL: Arg = Arg { short: Some(b'L'), long: "level", takes_value: TakesValue::Necessary(None) }; +pub static REVERSE: Arg = Arg { short: Some(b'r'), long: "reverse", takes_value: TakesValue::Forbidden }; +pub static SORT: Arg = Arg { short: Some(b's'), long: "sort", takes_value: TakesValue::Necessary(Some(SORTS)) }; +pub static IGNORE_GLOB: Arg = Arg { short: Some(b'I'), long: "ignore-glob", takes_value: TakesValue::Necessary(None) }; +pub static GIT_IGNORE: Arg = Arg { short: None, long: "git-ignore", takes_value: TakesValue::Forbidden }; +pub static DIRS_FIRST: Arg = Arg { short: None, long: "group-directories-first", takes_value: TakesValue::Forbidden }; +pub static DIRS_LAST: Arg = Arg { short: None, long: "group-directories-last", takes_value: TakesValue::Forbidden }; +pub static ONLY_DIRS: Arg = Arg { short: Some(b'D'), long: "only-dirs", takes_value: TakesValue::Forbidden }; +pub static ONLY_FILES: Arg = Arg { short: Some(b'f'), long: "only-files", takes_value: TakesValue::Forbidden }; +pub static NO_SYMLINKS: Arg = Arg { short: None, long: "no-symlinks", takes_value: TakesValue::Forbidden }; +pub static SHOW_SYMLINKS: Arg = Arg { short: None, long: "show-symlinks", takes_value: TakesValue::Forbidden }; + const SORTS: Values = &[ "name", "Name", "size", "extension", "Extension", "modified", "changed", "accessed", "created", "inode", "type", "none" ]; @@ -103,7 +105,7 @@ pub static ALL_ARGS: Args = Args(&[ &COLOR, &COLOUR, &COLOR_SCALE, &COLOUR_SCALE, &COLOR_SCALE_MODE, &COLOUR_SCALE_MODE, &WIDTH, &NO_QUOTES, &ABSOLUTE, - &ALL, &ALMOST_ALL, &LIST_DIRS, &LEVEL, &REVERSE, &SORT, &DIRS_FIRST, &DIRS_LAST, + &ALL, &ALMOST_ALL, &TREAT_DIRS_AS_FILES, &LIST_DIRS, &LEVEL, &REVERSE, &SORT, &DIRS_FIRST, &DIRS_LAST, &IGNORE_GLOB, &GIT_IGNORE, &ONLY_DIRS, &ONLY_FILES, &BINARY, &BYTES, &GROUP, &NUMERIC, &HEADER, &ICONS, &INODE, &LINKS, &MODIFIED, &CHANGED, diff --git a/src/options/help.rs b/src/options/help.rs index f23a2dd4..69070dba 100644 --- a/src/options/help.rs +++ b/src/options/help.rs @@ -41,7 +41,7 @@ FILTERING AND SORTING OPTIONS -a, --all show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories -A, --almost-all equivalent to --all; included for compatibility with `ls -A` - -d, --list-dirs list directories as files; don't list their contents + -d, --treat-dirs-as-files list directories as files; don't list their contents -D, --only-dirs list only directories -f, --only-files list only files --show-symlinks explicitly show symbolic links (for use with --only-dirs | --only-files) diff --git a/tests/ptests/ptest_10c50228fc1c6107.stdout b/tests/ptests/ptest_10c50228fc1c6107.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_10c50228fc1c6107.stdout +++ b/tests/ptests/ptest_10c50228fc1c6107.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_132ac9f159c3473e.stdout b/tests/ptests/ptest_132ac9f159c3473e.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_132ac9f159c3473e.stdout +++ b/tests/ptests/ptest_132ac9f159c3473e.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_1ab8279d631495b0.stdout b/tests/ptests/ptest_1ab8279d631495b0.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_1ab8279d631495b0.stdout +++ b/tests/ptests/ptest_1ab8279d631495b0.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_298b768f6bb48dac.stderr b/tests/ptests/ptest_1c1df011089efa5f.stderr similarity index 100% rename from tests/ptests/ptest_298b768f6bb48dac.stderr rename to tests/ptests/ptest_1c1df011089efa5f.stderr diff --git a/tests/ptests/ptest_3259dc201df8e734.stdout b/tests/ptests/ptest_1c1df011089efa5f.stdout similarity index 100% rename from tests/ptests/ptest_3259dc201df8e734.stdout rename to tests/ptests/ptest_1c1df011089efa5f.stdout diff --git a/tests/ptests/ptest_1c1df011089efa5f.toml b/tests/ptests/ptest_1c1df011089efa5f.toml new file mode 100644 index 00000000..9eeef3c3 --- /dev/null +++ b/tests/ptests/ptest_1c1df011089efa5f.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 2" \ No newline at end of file diff --git a/tests/ptests/ptest_1e61d8c305ff6c48.stdout b/tests/ptests/ptest_1e61d8c305ff6c48.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_1e61d8c305ff6c48.stdout +++ b/tests/ptests/ptest_1e61d8c305ff6c48.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_2439b7d68089135b.stdout b/tests/ptests/ptest_2439b7d68089135b.stdout index 274c861f..694fdf32 100644 --- a/tests/ptests/ptest_2439b7d68089135b.stdout +++ b/tests/ptests/ptest_2439b7d68089135b.stdout @@ -29,7 +29,7 @@ FILTERING AND SORTING OPTIONS -a, --all show hidden and 'dot' files. Use this twice to also show the '.' and '..' directories -A, --almost-all equivalent to --all; included for compatibility with `ls -A` - -d, --list-dirs list directories as files; don't list their contents + -d, --treat-dirs-as-files list directories as files; don't list their contents -D, --only-dirs list only directories -f, --only-files list only files --show-symlinks explicitly show symbolic links (for use with --only-dirs | --only-files) diff --git a/tests/ptests/ptest_298b768f6bb48dac.toml b/tests/ptests/ptest_298b768f6bb48dac.toml deleted file mode 100644 index 0a439e7c..00000000 --- a/tests/ptests/ptest_298b768f6bb48dac.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree --level 5" \ No newline at end of file diff --git a/tests/ptests/ptest_3259dc201df8e734.stderr b/tests/ptests/ptest_2ba3ba45a3b3cc94.stderr similarity index 100% rename from tests/ptests/ptest_3259dc201df8e734.stderr rename to tests/ptests/ptest_2ba3ba45a3b3cc94.stderr diff --git a/tests/ptests/ptest_2ba3ba45a3b3cc94.stdout b/tests/ptests/ptest_2ba3ba45a3b3cc94.stdout new file mode 100644 index 00000000..3af5dff8 --- /dev/null +++ b/tests/ptests/ptest_2ba3ba45a3b3cc94.stdout @@ -0,0 +1 @@ +tests/test_dir diff --git a/tests/ptests/ptest_2ba3ba45a3b3cc94.toml b/tests/ptests/ptest_2ba3ba45a3b3cc94.toml new file mode 100644 index 00000000..ca954642 --- /dev/null +++ b/tests/ptests/ptest_2ba3ba45a3b3cc94.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 0" \ No newline at end of file diff --git a/tests/ptests/ptest_3259dc201df8e734.toml b/tests/ptests/ptest_3259dc201df8e734.toml deleted file mode 100644 index c6a5ebf4..00000000 --- a/tests/ptests/ptest_3259dc201df8e734.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree -L 2" \ No newline at end of file diff --git a/tests/ptests/ptest_41b5466dabf23647.stderr b/tests/ptests/ptest_3528aa3d0794ba5b.stderr similarity index 100% rename from tests/ptests/ptest_41b5466dabf23647.stderr rename to tests/ptests/ptest_3528aa3d0794ba5b.stderr diff --git a/tests/ptests/ptest_792e19c3c3247d3.stdout b/tests/ptests/ptest_3528aa3d0794ba5b.stdout similarity index 100% rename from tests/ptests/ptest_792e19c3c3247d3.stdout rename to tests/ptests/ptest_3528aa3d0794ba5b.stdout diff --git a/tests/ptests/ptest_3528aa3d0794ba5b.toml b/tests/ptests/ptest_3528aa3d0794ba5b.toml new file mode 100644 index 00000000..118b6d4b --- /dev/null +++ b/tests/ptests/ptest_3528aa3d0794ba5b.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 1" \ No newline at end of file diff --git a/tests/ptests/ptest_36127172d1c48ad1.stdout b/tests/ptests/ptest_36127172d1c48ad1.stdout index 967de8a4..73f24e08 100644 --- a/tests/ptests/ptest_36127172d1c48ad1.stdout +++ b/tests/ptests/ptest_36127172d1c48ad1.stdout @@ -1,8 +1,5 @@ -git time -grid -group -icons -perms -size -specials -symlinks +git size +grid specials +group symlinks +icons time +perms diff --git a/tests/ptests/ptest_46a8435d247c34c9.stderr b/tests/ptests/ptest_391fb71023fbe78f.stderr similarity index 100% rename from tests/ptests/ptest_46a8435d247c34c9.stderr rename to tests/ptests/ptest_391fb71023fbe78f.stderr diff --git a/tests/ptests/ptest_298b768f6bb48dac.stdout b/tests/ptests/ptest_391fb71023fbe78f.stdout similarity index 100% rename from tests/ptests/ptest_298b768f6bb48dac.stdout rename to tests/ptests/ptest_391fb71023fbe78f.stdout diff --git a/tests/ptests/ptest_391fb71023fbe78f.toml b/tests/ptests/ptest_391fb71023fbe78f.toml new file mode 100644 index 00000000..a4f43f43 --- /dev/null +++ b/tests/ptests/ptest_391fb71023fbe78f.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 3" \ No newline at end of file diff --git a/tests/ptests/ptest_41b5466dabf23647.toml b/tests/ptests/ptest_41b5466dabf23647.toml deleted file mode 100644 index 777b2e15..00000000 --- a/tests/ptests/ptest_41b5466dabf23647.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree --level 3" \ No newline at end of file diff --git a/tests/ptests/ptest_469e79a86c2c874f.stdout b/tests/ptests/ptest_469e79a86c2c874f.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_469e79a86c2c874f.stdout +++ b/tests/ptests/ptest_469e79a86c2c874f.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_46a8435d247c34c9.toml b/tests/ptests/ptest_46a8435d247c34c9.toml deleted file mode 100644 index f4205ece..00000000 --- a/tests/ptests/ptest_46a8435d247c34c9.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree --level 4" \ No newline at end of file diff --git a/tests/ptests/ptest_72f8f65472fcd4fa.stderr b/tests/ptests/ptest_4728f2d14d31f2ff.stderr similarity index 100% rename from tests/ptests/ptest_72f8f65472fcd4fa.stderr rename to tests/ptests/ptest_4728f2d14d31f2ff.stderr diff --git a/tests/ptests/ptest_41b5466dabf23647.stdout b/tests/ptests/ptest_4728f2d14d31f2ff.stdout similarity index 100% rename from tests/ptests/ptest_41b5466dabf23647.stdout rename to tests/ptests/ptest_4728f2d14d31f2ff.stdout diff --git a/tests/ptests/ptest_4728f2d14d31f2ff.toml b/tests/ptests/ptest_4728f2d14d31f2ff.toml new file mode 100644 index 00000000..876bb7b1 --- /dev/null +++ b/tests/ptests/ptest_4728f2d14d31f2ff.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 4" \ No newline at end of file diff --git a/tests/ptests/ptest_792e19c3c3247d3.stderr b/tests/ptests/ptest_56d755ade90650de.stderr similarity index 100% rename from tests/ptests/ptest_792e19c3c3247d3.stderr rename to tests/ptests/ptest_56d755ade90650de.stderr diff --git a/tests/ptests/ptest_56d755ade90650de.stdout b/tests/ptests/ptest_56d755ade90650de.stdout new file mode 100644 index 00000000..3af5dff8 --- /dev/null +++ b/tests/ptests/ptest_56d755ade90650de.stdout @@ -0,0 +1 @@ +tests/test_dir diff --git a/tests/ptests/ptest_56d755ade90650de.toml b/tests/ptests/ptest_56d755ade90650de.toml new file mode 100644 index 00000000..f37b753c --- /dev/null +++ b/tests/ptests/ptest_56d755ade90650de.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir --treat-dirs-as-files " \ No newline at end of file diff --git a/tests/ptests/ptest_7eb3e7c4e76f0b53.stderr b/tests/ptests/ptest_5bf846977eb5a96e.stderr similarity index 100% rename from tests/ptests/ptest_7eb3e7c4e76f0b53.stderr rename to tests/ptests/ptest_5bf846977eb5a96e.stderr diff --git a/tests/ptests/ptest_46a8435d247c34c9.stdout b/tests/ptests/ptest_5bf846977eb5a96e.stdout similarity index 100% rename from tests/ptests/ptest_46a8435d247c34c9.stdout rename to tests/ptests/ptest_5bf846977eb5a96e.stdout diff --git a/tests/ptests/ptest_5bf846977eb5a96e.toml b/tests/ptests/ptest_5bf846977eb5a96e.toml new file mode 100644 index 00000000..86e99784 --- /dev/null +++ b/tests/ptests/ptest_5bf846977eb5a96e.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 3" \ No newline at end of file diff --git a/tests/ptests/ptest_c4ead86a12b992a8.stderr b/tests/ptests/ptest_5d72b8a5ba66436b.stderr similarity index 100% rename from tests/ptests/ptest_c4ead86a12b992a8.stderr rename to tests/ptests/ptest_5d72b8a5ba66436b.stderr diff --git a/tests/ptests/ptest_72f8f65472fcd4fa.stdout b/tests/ptests/ptest_5d72b8a5ba66436b.stdout similarity index 100% rename from tests/ptests/ptest_72f8f65472fcd4fa.stdout rename to tests/ptests/ptest_5d72b8a5ba66436b.stdout diff --git a/tests/ptests/ptest_5d72b8a5ba66436b.toml b/tests/ptests/ptest_5d72b8a5ba66436b.toml new file mode 100644 index 00000000..fd4e35d2 --- /dev/null +++ b/tests/ptests/ptest_5d72b8a5ba66436b.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T -L 5" \ No newline at end of file diff --git a/tests/ptests/ptest_de916a0d5867def3.stderr b/tests/ptests/ptest_5eac3027be1d2909.stderr similarity index 100% rename from tests/ptests/ptest_de916a0d5867def3.stderr rename to tests/ptests/ptest_5eac3027be1d2909.stderr diff --git a/tests/ptests/ptest_5eac3027be1d2909.stdout b/tests/ptests/ptest_5eac3027be1d2909.stdout new file mode 100644 index 00000000..3af5dff8 --- /dev/null +++ b/tests/ptests/ptest_5eac3027be1d2909.stdout @@ -0,0 +1 @@ +tests/test_dir diff --git a/tests/ptests/ptest_5eac3027be1d2909.toml b/tests/ptests/ptest_5eac3027be1d2909.toml new file mode 100644 index 00000000..52660f63 --- /dev/null +++ b/tests/ptests/ptest_5eac3027be1d2909.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 0" \ No newline at end of file diff --git a/tests/ptests/ptest_e1033830f4720a6f.stderr b/tests/ptests/ptest_607792764dd84355.stderr similarity index 100% rename from tests/ptests/ptest_e1033830f4720a6f.stderr rename to tests/ptests/ptest_607792764dd84355.stderr diff --git a/tests/ptests/ptest_de916a0d5867def3.stdout b/tests/ptests/ptest_607792764dd84355.stdout similarity index 100% rename from tests/ptests/ptest_de916a0d5867def3.stdout rename to tests/ptests/ptest_607792764dd84355.stdout diff --git a/tests/ptests/ptest_607792764dd84355.toml b/tests/ptests/ptest_607792764dd84355.toml new file mode 100644 index 00000000..df87c72e --- /dev/null +++ b/tests/ptests/ptest_607792764dd84355.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 5" \ No newline at end of file diff --git a/tests/ptests/ptest_6796295d6420d03a.stderr b/tests/ptests/ptest_6796295d6420d03a.stderr new file mode 100644 index 00000000..e69de29b diff --git a/tests/ptests/ptest_e1033830f4720a6f.stdout b/tests/ptests/ptest_6796295d6420d03a.stdout similarity index 100% rename from tests/ptests/ptest_e1033830f4720a6f.stdout rename to tests/ptests/ptest_6796295d6420d03a.stdout diff --git a/tests/ptests/ptest_6796295d6420d03a.toml b/tests/ptests/ptest_6796295d6420d03a.toml new file mode 100644 index 00000000..858f9418 --- /dev/null +++ b/tests/ptests/ptest_6796295d6420d03a.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 4" \ No newline at end of file diff --git a/tests/ptests/ptest_6e6893c2c2254622.stdout b/tests/ptests/ptest_6e6893c2c2254622.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_6e6893c2c2254622.stdout +++ b/tests/ptests/ptest_6e6893c2c2254622.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_72f8f65472fcd4fa.toml b/tests/ptests/ptest_72f8f65472fcd4fa.toml deleted file mode 100644 index ea970ead..00000000 --- a/tests/ptests/ptest_72f8f65472fcd4fa.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree -L 4" \ No newline at end of file diff --git a/tests/ptests/ptest_792e19c3c3247d3.toml b/tests/ptests/ptest_792e19c3c3247d3.toml deleted file mode 100644 index 20e0bf30..00000000 --- a/tests/ptests/ptest_792e19c3c3247d3.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree -L 1" \ No newline at end of file diff --git a/tests/ptests/ptest_7d1cd636566df8cd.stdout b/tests/ptests/ptest_7d1cd636566df8cd.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_7d1cd636566df8cd.stdout +++ b/tests/ptests/ptest_7d1cd636566df8cd.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_7eb3e7c4e76f0b53.toml b/tests/ptests/ptest_7eb3e7c4e76f0b53.toml deleted file mode 100644 index 6576ebc5..00000000 --- a/tests/ptests/ptest_7eb3e7c4e76f0b53.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree --level 1" \ No newline at end of file diff --git a/tests/ptests/ptest_825e60e73630f857.stdout b/tests/ptests/ptest_825e60e73630f857.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_825e60e73630f857.stdout +++ b/tests/ptests/ptest_825e60e73630f857.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_8becd3030ba5621c.stdout b/tests/ptests/ptest_8becd3030ba5621c.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_8becd3030ba5621c.stdout +++ b/tests/ptests/ptest_8becd3030ba5621c.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_8cd9b0ae2930d704.stdout b/tests/ptests/ptest_8cd9b0ae2930d704.stdout index 0b2bea91..880689c3 100644 --- a/tests/ptests/ptest_8cd9b0ae2930d704.stdout +++ b/tests/ptests/ptest_8cd9b0ae2930d704.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 perms +drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 grid drwxr-xr-x - nixbld 1 Jan 1970 specials +drwxr-xr-x - nixbld 1 Jan 1970 time +drwxr-xr-x - nixbld 1 Jan 1970 perms +drwxr-xr-x - nixbld 1 Jan 1970 symlinks drwxr-xr-x - nixbld 1 Jan 1970 group drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 grid -drwxr-xr-x - nixbld 1 Jan 1970 git -drwxr-xr-x - nixbld 1 Jan 1970 symlinks drwxr-xr-x - nixbld 1 Jan 1970 icons diff --git a/tests/ptests/ptest_98d345bf337daf3f.stderr b/tests/ptests/ptest_98d345bf337daf3f.stderr new file mode 100644 index 00000000..e69de29b diff --git a/tests/ptests/ptest_7eb3e7c4e76f0b53.stdout b/tests/ptests/ptest_98d345bf337daf3f.stdout similarity index 100% rename from tests/ptests/ptest_7eb3e7c4e76f0b53.stdout rename to tests/ptests/ptest_98d345bf337daf3f.stdout diff --git a/tests/ptests/ptest_98d345bf337daf3f.toml b/tests/ptests/ptest_98d345bf337daf3f.toml new file mode 100644 index 00000000..ba9bee40 --- /dev/null +++ b/tests/ptests/ptest_98d345bf337daf3f.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 1" \ No newline at end of file diff --git a/tests/ptests/ptest_a82ad7ec2e961f84.stdout b/tests/ptests/ptest_a82ad7ec2e961f84.stdout index 7ca0cfae..c15a76f4 100644 --- a/tests/ptests/ptest_a82ad7ec2e961f84.stdout +++ b/tests/ptests/ptest_a82ad7ec2e961f84.stdout @@ -1,3 +1,3 @@ eza - A modern, maintained replacement for ls -v0.20.13 [+git] (pre-release debug build!) +v0.21.4 [+git] (pre-release debug build!) https://github.com/eza-community/eza diff --git a/tests/ptests/ptest_aba07307b0f70090.stdout b/tests/ptests/ptest_aba07307b0f70090.stdout index 967de8a4..73f24e08 100644 --- a/tests/ptests/ptest_aba07307b0f70090.stdout +++ b/tests/ptests/ptest_aba07307b0f70090.stdout @@ -1,8 +1,5 @@ -git time -grid -group -icons -perms -size -specials -symlinks +git size +grid specials +group symlinks +icons time +perms diff --git a/tests/ptests/ptest_abc83ec759ddab6.stdout b/tests/ptests/ptest_abc83ec759ddab6.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_abc83ec759ddab6.stdout +++ b/tests/ptests/ptest_abc83ec759ddab6.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_af29d370729835d8.stdout b/tests/ptests/ptest_af29d370729835d8.stdout index 7ca0cfae..c15a76f4 100644 --- a/tests/ptests/ptest_af29d370729835d8.stdout +++ b/tests/ptests/ptest_af29d370729835d8.stdout @@ -1,3 +1,3 @@ eza - A modern, maintained replacement for ls -v0.20.13 [+git] (pre-release debug build!) +v0.21.4 [+git] (pre-release debug build!) https://github.com/eza-community/eza diff --git a/tests/ptests/ptest_bbfc26a93fbe15a7.stdout b/tests/ptests/ptest_bbfc26a93fbe15a7.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_bbfc26a93fbe15a7.stdout +++ b/tests/ptests/ptest_bbfc26a93fbe15a7.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_bc3ef3722b915c0a.stdout b/tests/ptests/ptest_bc3ef3722b915c0a.stdout index 0b2bea91..880689c3 100644 --- a/tests/ptests/ptest_bc3ef3722b915c0a.stdout +++ b/tests/ptests/ptest_bc3ef3722b915c0a.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 perms +drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 grid drwxr-xr-x - nixbld 1 Jan 1970 specials +drwxr-xr-x - nixbld 1 Jan 1970 time +drwxr-xr-x - nixbld 1 Jan 1970 perms +drwxr-xr-x - nixbld 1 Jan 1970 symlinks drwxr-xr-x - nixbld 1 Jan 1970 group drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 grid -drwxr-xr-x - nixbld 1 Jan 1970 git -drwxr-xr-x - nixbld 1 Jan 1970 symlinks drwxr-xr-x - nixbld 1 Jan 1970 icons diff --git a/tests/ptests/ptest_c4ead86a12b992a8.toml b/tests/ptests/ptest_c4ead86a12b992a8.toml deleted file mode 100644 index dbe8aa5c..00000000 --- a/tests/ptests/ptest_c4ead86a12b992a8.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree --level 2" \ No newline at end of file diff --git a/tests/ptests/ptest_caa4e824b02fa569.stdout b/tests/ptests/ptest_caa4e824b02fa569.stdout index b5cf6bfd..67d1b89d 100644 --- a/tests/ptests/ptest_caa4e824b02fa569.stdout +++ b/tests/ptests/ptest_caa4e824b02fa569.stdout @@ -1,9 +1,9 @@ -drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 time -drwxr-xr-x - nixbld 1 Jan 1970 size -drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 symlinks +drwxr-xr-x - nixbld 1 Jan 1970 perms drwxr-xr-x - nixbld 1 Jan 1970 specials -drwxr-xr-x - nixbld 1 Jan 1970 git +drwxr-xr-x - nixbld 1 Jan 1970 size +drwxr-xr-x - nixbld 1 Jan 1970 icons drwxr-xr-x - nixbld 1 Jan 1970 group +drwxr-xr-x - nixbld 1 Jan 1970 git drwxr-xr-x - nixbld 1 Jan 1970 grid diff --git a/tests/ptests/ptest_dc6b5f21bb23c27.stderr b/tests/ptests/ptest_dc6b5f21bb23c27.stderr new file mode 100644 index 00000000..e69de29b diff --git a/tests/ptests/ptest_c4ead86a12b992a8.stdout b/tests/ptests/ptest_dc6b5f21bb23c27.stdout similarity index 100% rename from tests/ptests/ptest_c4ead86a12b992a8.stdout rename to tests/ptests/ptest_dc6b5f21bb23c27.stdout diff --git a/tests/ptests/ptest_dc6b5f21bb23c27.toml b/tests/ptests/ptest_dc6b5f21bb23c27.toml new file mode 100644 index 00000000..ce0472b1 --- /dev/null +++ b/tests/ptests/ptest_dc6b5f21bb23c27.toml @@ -0,0 +1,2 @@ +bin.name = "eza" +args = "tests/test_dir -T --level 2" \ No newline at end of file diff --git a/tests/ptests/ptest_de916a0d5867def3.toml b/tests/ptests/ptest_de916a0d5867def3.toml deleted file mode 100644 index 2df72af7..00000000 --- a/tests/ptests/ptest_de916a0d5867def3.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree -L 5" \ No newline at end of file diff --git a/tests/ptests/ptest_e1033830f4720a6f.toml b/tests/ptests/ptest_e1033830f4720a6f.toml deleted file mode 100644 index 8b27cbe0..00000000 --- a/tests/ptests/ptest_e1033830f4720a6f.toml +++ /dev/null @@ -1,2 +0,0 @@ -bin.name = "eza" -args = "tests/test_dir --tree -L 3" \ No newline at end of file