testsuite: parser testcase output changes a little because we escape when running as pkgconf CLI now

feature/tap-sh
William Pitcock 2017-02-25 15:33:41 -06:00
parent 44b676b782
commit 3744a84380
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ fragment_quoting_body()
{ {
export PKG_CONFIG_PATH="${selfdir}/lib1" export PKG_CONFIG_PATH="${selfdir}/lib1"
atf_check \ atf_check \
-o inline:"-fPIC -I/test/include/foo -DQUOTED='\"/test/share/doc\"' \n" \ -o inline:"-fPIC -I/test/include/foo -DQUOTED=\\\"/test/share/doc\\\" \n" \
pkgconf --cflags fragment-quoting pkgconf --cflags fragment-quoting
} }
@ -187,7 +187,7 @@ fragment_quoting_4_body()
{ {
export PKG_CONFIG_PATH="${selfdir}/lib1" export PKG_CONFIG_PATH="${selfdir}/lib1"
atf_check \ atf_check \
-o inline:"-fPIC -I/test/include/foo -DQUOTED=\"'/test/share/doc'\" \n" \ -o inline:"-fPIC -I/test/include/foo -DQUOTED=\\\'/test/share/doc\\\' \n" \
pkgconf --cflags fragment-quoting-4 pkgconf --cflags fragment-quoting-4
} }