diff options
author | Jim Meyering <meyering@fb.com> | 2016-10-03 09:00:48 -0700 |
---|---|---|
committer | Jim Meyering <meyering@fb.com> | 2016-10-15 08:41:42 -0700 |
commit | 1d5fe84b4eabb54bf0847eaf83a15c2dae21d2f6 (patch) | |
tree | e3e94922c6aee4896558a3b1616d00e912d2aa67 | |
parent | 0e060d9fef64727aa2d41f00f8217c61166bb2e0 (diff) | |
download | coreutils-1d5fe84b4eabb54bf0847eaf83a15c2dae21d2f6.tar.xz |
gnulib: update to latest and adapt printf-quote.sh test
* .gitignore: Add /lib/limits.h.
* tests/misc/printf-quote.sh: Reflect that a single quote is now
rendered as "'", rather than as ''\'''.
-rw-r--r-- | .gitignore | 1 | ||||
m--------- | gnulib | 0 | ||||
-rwxr-xr-x | tests/misc/printf-quote.sh | 2 |
3 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 86574ecc9..388e6643d 100644 --- a/.gitignore +++ b/.gitignore @@ -68,6 +68,7 @@ /lib/inttypes.h /lib/langinfo.h /lib/libcoreutils.a +/lib/limits.h /lib/link-warning.h /lib/locale.h /lib/math.h diff --git a/gnulib b/gnulib -Subproject 6d237fd01d98f2cdd588055a088fed39646ab82 +Subproject 7dad5f25591de682c452c3fc39ffe2fa11e2149 diff --git a/tests/misc/printf-quote.sh b/tests/misc/printf-quote.sh index 963665669..43b6dcc84 100755 --- a/tests/misc/printf-quote.sh +++ b/tests/misc/printf-quote.sh @@ -25,7 +25,7 @@ prog='env printf' $prog '%q\n' '' "'" a 'a b' '~a' 'a~' "$($prog %b 'a\r')" > out cat <<\EOF > exp || framework_failure_ '' -''\''' +"'" a 'a b' '~a' |