-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use printf binary directly when forming expected test output
It was observed on Lubuntu that the sh built-in print does not escape hex as expected. For example, the following is expected: $ printf "hi\x9there\n" hi there $ However, on Lubuntu the built-in printf command in sh produces the following: $ sh -c 'printf "hi\x9there\n' hi\x9there $ To avoid this, use the printf binary, which env will find and invoke.
- Loading branch information
Branden Archer
committed
Dec 26, 2015
1 parent
944ce22
commit 61dfe1c
Showing
2 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters