mirror of
https://gitlab.freedesktop.org/pkg-config/pkg-config.git
synced 2026-02-04 10:40:49 +01:00
Test that pkg-config respects the various environment variables that override the system flags handling. https://bugs.freedesktop.org/show_bug.cgi?id=94729
121 lines
2.4 KiB
Makefile
121 lines
2.4 KiB
Makefile
TESTS_ENVIRONMENT = PKG_CONFIG='$(TESTS_PKG_CONFIG)' $(TESTS_SHELL)
|
|
|
|
TESTS = \
|
|
check-cflags \
|
|
check-libs \
|
|
check-mixed-flags \
|
|
check-non-l-flags \
|
|
check-define-variable \
|
|
check-libs-private \
|
|
check-requires-private \
|
|
check-circular-requires \
|
|
check-includedir \
|
|
check-conflicts \
|
|
check-missing \
|
|
check-special-flags \
|
|
check-sort-order \
|
|
check-duplicate-flags \
|
|
check-whitespace \
|
|
check-cmd-options \
|
|
check-version \
|
|
check-requires-version \
|
|
check-print-options \
|
|
check-path \
|
|
check-sysroot \
|
|
check-uninstalled \
|
|
check-debug \
|
|
check-gtk \
|
|
check-tilde \
|
|
check-relocatable \
|
|
check-variable-override \
|
|
check-variables \
|
|
check-dependencies \
|
|
check-system-flags \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(TESTS) \
|
|
common \
|
|
simple.pc \
|
|
requires-test.pc \
|
|
public-dep.pc \
|
|
private-dep.pc \
|
|
includedir.pc \
|
|
missing-requires-private.pc \
|
|
missing-requires.pc \
|
|
special-flags.pc \
|
|
conflicts-test.pc \
|
|
whitespace.pc \
|
|
fields-blank.pc \
|
|
sub/sub1.pc \
|
|
sub/sub2.pc \
|
|
sub/broken.pc \
|
|
inst.pc \
|
|
inst-uninstalled.pc \
|
|
other.pc \
|
|
requires-version-1.pc \
|
|
requires-version-2.pc \
|
|
requires-version-3.pc \
|
|
non-l.pc \
|
|
non-l-required.pc \
|
|
circular-1.pc \
|
|
circular-2.pc \
|
|
circular-3.pc \
|
|
no-variables.pc \
|
|
sort-order-1-1.pc \
|
|
sort/sort-order-2-1.pc \
|
|
sort/sort/sort-order-3-1.pc \
|
|
sort-order-1-2.pc \
|
|
sort/sort-order-2-2.pc \
|
|
sort/sort/sort-order-3-2.pc \
|
|
sort-order-1-3.pc \
|
|
sort/sort-order-2-3.pc \
|
|
sort/sort/sort-order-3-3.pc \
|
|
flag-dup-1.pc \
|
|
flag-dup-2.pc \
|
|
gtk/atk.pc \
|
|
gtk/cairo-gobject.pc \
|
|
gtk/cairo.pc \
|
|
gtk/fontconfig.pc \
|
|
gtk/freetype2.pc \
|
|
gtk/gdk-3.0.pc \
|
|
gtk/gdk-pixbuf-2.0.pc \
|
|
gtk/gio-2.0.pc \
|
|
gtk/glib-2.0.pc \
|
|
gtk/gmodule-no-export-2.0.pc \
|
|
gtk/gobject-2.0.pc \
|
|
gtk/gthread-2.0.pc \
|
|
gtk/gtk+-3.0.pc \
|
|
gtk/kbproto.pc \
|
|
gtk/libpng12.pc \
|
|
gtk/libpng.pc \
|
|
gtk/pangocairo.pc \
|
|
gtk/pangoft2.pc \
|
|
gtk/pango.pc \
|
|
gtk/pixman-1.pc \
|
|
gtk/renderproto.pc \
|
|
gtk/x11.pc \
|
|
gtk/xau.pc \
|
|
gtk/xcb.pc \
|
|
gtk/xproto.pc \
|
|
gtk/xrender.pc \
|
|
tilde.pc \
|
|
pkgconfig/empty-prefix.pc \
|
|
pkgconfig/prefixdef.pc \
|
|
pkgconfig/prefixdef-expanded.pc \
|
|
pcfiledir.pc \
|
|
variables.pc \
|
|
dependencies/a_dep_c.pc \
|
|
dependencies/b_dep_c.pc \
|
|
dependencies/c_dep.pc \
|
|
dependencies/d_dep_e_f.pc \
|
|
dependencies/d_dep_f_e.pc \
|
|
dependencies/e_dep_g_f.pc \
|
|
dependencies/f_dep_g.pc \
|
|
dependencies/g_dep.pc \
|
|
dependencies/h_dep_k_i_j.pc \
|
|
dependencies/i_dep_k_j.pc \
|
|
dependencies/j_dep_k.pc \
|
|
dependencies/k_dep.pc \
|
|
system.pc \
|
|
$(NULL)
|