summaryrefslogtreecommitdiff
path: root/libpkgconf/tests/api/testscript
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-10-20 17:06:32 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-10-20 17:06:32 +0300
commite00a421e51b5747696f89b6611eba1d0010dd501 (patch)
tree89ebd5975b58597c4e8555144f98ad26333c40a8 /libpkgconf/tests/api/testscript
parentf76df6b5b3ad65675058bf6ab0aa8bf6e14e11ac (diff)
Release version 1.6.3+5v1.6.3+5
Prevent dropping of -framework options in Libs value Change manifest builds value from all to host Disable the success build emails Cleanup comments in tests/basic/driver.c
Diffstat (limited to 'libpkgconf/tests/api/testscript')
-rw-r--r--libpkgconf/tests/api/testscript28
1 files changed, 28 insertions, 0 deletions
diff --git a/libpkgconf/tests/api/testscript b/libpkgconf/tests/api/testscript
index 0382f87..39341ba 100644
--- a/libpkgconf/tests/api/testscript
+++ b/libpkgconf/tests/api/testscript
@@ -143,3 +143,31 @@
Security
EOO
}
+
+: no-drop
+:
+: Test that the -framework options are not dropped.
+:
+{
+ +cat <<EOI >=libfoo.pc
+ Name: libfoo
+ Description: Foo library
+ Version: 1.0
+ Libs: -L/Users/build/install/lib -lcurl -framework Cocoa -framework IOKit -framework CoreFoundation
+ EOI
+
+ f = $~/libfoo.pc
+
+ : libs
+ :
+ $* --libs $f >>EOO
+ L /Users/build/install/lib
+ l curl
+ -framework
+ Cocoa
+ -framework
+ IOKit
+ -framework
+ CoreFoundation
+ EOO
+}