From 3744a84380cbd95b9625aa5bbb404687e9701bda Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sat, 25 Feb 2017 15:33:41 -0600 Subject: [PATCH] testsuite: parser testcase output changes a little because we escape when running as pkgconf CLI now --- tests/parser.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/parser.sh b/tests/parser.sh index ed7bb9c..a3a01c0 100755 --- a/tests/parser.sh +++ b/tests/parser.sh @@ -163,7 +163,7 @@ fragment_quoting_body() { export PKG_CONFIG_PATH="${selfdir}/lib1" 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 } @@ -187,7 +187,7 @@ fragment_quoting_4_body() { export PKG_CONFIG_PATH="${selfdir}/lib1" 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 }