-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[llvm-lit] lit internal shell does not support -e option for cat commands #102377
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
Labels
Comments
@llvm/issue-subscribers-lldb Author: Connie (connieyzhu)
lit’s internal shell currently does not support the `-e` option for `cat`, which gives an error when running the lldb test referenced below.
Error message:
|
This was referenced Aug 9, 2024
ilovepi
pushed a commit
that referenced
this issue
Aug 20, 2024
…ernal shell (#104878) This patch changes the test that uses the `cat -e` option to `cat -v` so that the test can be run using lit's internal shell. For `cat`, the `-v` option prints non-printing characters in ^ and M- notation, while the `-e` option adds `$` to the end of lines in addition to printing non-printing characters in ^ and M- notation. This is an alternative patch to #102061, opting to rewrite the test that uses `cat -e` instead of extending support to the `-e` option. Fixes #102377
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lit’s internal shell currently does not support the
-e
option forcat
, which gives an error when running the lldb test referenced below.Error message:
The text was updated successfully, but these errors were encountered: