Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

seq: improve error handling for invalid -f values #7032

Merged
merged 1 commit into from
Dec 31, 2024

Conversation

jfinkels
Copy link
Collaborator

Improve the error message produced by seq when given invalid format specifiers for the -f option. Before this commit:

$ seq -f "%" 1
seq: %: invalid conversion specification
$ seq -f "%g%" 1
seq: %: invalid conversion specification

After this commit:

$ seq -f "%" 1
seq: format '%' ends in %
$ seq -f "%g%" 1
seq: format '%g%' has too many % directives

This matches the behavior of GNU seq.

Improve the error message produced by `seq` when given invalid format
specifiers for the `-f` option. Before this commit:

    $ seq -f "%" 1
    seq: %: invalid conversion specification
    $ seq -f "%g%" 1
    seq: %: invalid conversion specification

After this commit:

    $ seq -f "%" 1
    seq: format '%' ends in %
    $ seq -f "%g%" 1
    seq: format '%g%' has too many % directives

This matches the behavior of GNU `seq`.
Copy link

GNU testsuite comparison:

Congrats! The gnu test tests/seq/seq is no longer failing!

@sylvestre sylvestre merged commit ed9e80e into uutils:main Dec 31, 2024
63 checks passed
@sylvestre
Copy link
Contributor

well done :)

@jfinkels jfinkels deleted the seq-fmt-errors branch January 2, 2025 14:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants