mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
Convert more tests to installed tests
This makes the tests in tests installed, except for the performance tests.
This commit is contained in:
parent
1808888a1f
commit
7ff5c08221
@ -1,5 +1,7 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
|
insttestdir = $(pkglibexecdir)/installed-tests
|
||||||
|
|
||||||
SUBDIRS=gobject refcount
|
SUBDIRS=gobject refcount
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
@ -129,6 +131,29 @@ TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
|||||||
MALLOC_CHECK_=2 \
|
MALLOC_CHECK_=2 \
|
||||||
MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
|
MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256))
|
||||||
|
|
||||||
|
test_data = \
|
||||||
|
iochannel-test-infile \
|
||||||
|
casemap.txt \
|
||||||
|
casefold.txt \
|
||||||
|
utf8.txt \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
|
if BUILDOPT_INSTALL_TESTS
|
||||||
|
insttest_PROGRAMS = $(test_programs)
|
||||||
|
|
||||||
|
testmetadir = $(datadir)/installed-tests/$(PACKAGE)
|
||||||
|
testmeta_DATA = $(test_programs:=.test)
|
||||||
|
|
||||||
|
insttest_DATA = $(test_data)
|
||||||
|
|
||||||
|
%.test: % Makefile
|
||||||
|
$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
|
||||||
|
echo 'Type=session' >> $@.tmp; \
|
||||||
|
echo 'Exec=env G_TEST_DATA=$(pkglibexecdir)/installed-tests $(pkglibexecdir)/installed-tests/$<' >> $@.tmp; \
|
||||||
|
mv $@.tmp $@)
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
progs_ldadd = $(EFENCE) $(libglib) $(EFENCE)
|
progs_ldadd = $(EFENCE) $(libglib) $(EFENCE)
|
||||||
thread_ldadd = $(libgthread) $(G_THREAD_LIBS) $(progs_ldadd)
|
thread_ldadd = $(libgthread) $(G_THREAD_LIBS) $(progs_ldadd)
|
||||||
module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
|
module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
|
||||||
@ -166,14 +191,18 @@ type_test_LDADD = $(progs_ldadd)
|
|||||||
unicode_encoding_LDADD = $(progs_ldadd)
|
unicode_encoding_LDADD = $(progs_ldadd)
|
||||||
unicode_caseconv_LDADD = $(progs_ldadd)
|
unicode_caseconv_LDADD = $(progs_ldadd)
|
||||||
|
|
||||||
|
if BUILDOPT_INSTALL_TESTS
|
||||||
|
insttest_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
||||||
|
else
|
||||||
noinst_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
noinst_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
||||||
|
endif
|
||||||
|
|
||||||
libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
|
libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
|
||||||
libmoduletestplugin_a_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
|
libmoduletestplugin_a_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(insttestdir)
|
||||||
libmoduletestplugin_a_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
libmoduletestplugin_a_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
||||||
|
|
||||||
libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
|
libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
|
||||||
libmoduletestplugin_b_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(libdir)
|
libmoduletestplugin_b_la_LDFLAGS = $(G_MODULE_LDFLAGS) -avoid-version -module $(no_undefined) -rpath $(insttestdir)
|
||||||
libmoduletestplugin_b_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
libmoduletestplugin_b_la_LIBADD = $(G_MODULE_LIBS) $(libadd_libgmodule) $(libadd_libglib)
|
||||||
|
|
||||||
dist-hook: $(BUILT_EXTRA_DIST)
|
dist-hook: $(BUILT_EXTRA_DIST)
|
||||||
|
@ -60,16 +60,18 @@ test_programs = \
|
|||||||
defaultiface \
|
defaultiface \
|
||||||
dynamictype \
|
dynamictype \
|
||||||
override \
|
override \
|
||||||
performance \
|
|
||||||
performance-threaded \
|
|
||||||
singleton \
|
singleton \
|
||||||
references
|
references
|
||||||
|
|
||||||
|
performance_programs = \
|
||||||
|
performance \
|
||||||
|
performance-threaded
|
||||||
|
|
||||||
performance_LDADD = $(libgobject) $(libgthread)
|
performance_LDADD = $(libgobject) $(libgthread)
|
||||||
performance_threaded_LDADD = $(libgobject) $(libgthread)
|
performance_threaded_LDADD = $(libgobject) $(libgthread)
|
||||||
check_PROGRAMS = $(test_programs)
|
check_PROGRAMS = $(test_programs)
|
||||||
|
|
||||||
TESTS = $(test_programs)
|
TESTS = $(test_programs) $(performance_programs)
|
||||||
TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
TESTS_ENVIRONMENT = srcdir=$(srcdir) \
|
||||||
LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset \
|
LIBCHARSET_ALIAS_DIR=$(top_builddir)/glib/libcharset \
|
||||||
MALLOC_CHECK_=2 \
|
MALLOC_CHECK_=2 \
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
#define BUFFER_SIZE 1024
|
#define BUFFER_SIZE 1024
|
||||||
|
|
||||||
|
static const gchar *datapath;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_small_writes (void)
|
test_small_writes (void)
|
||||||
{
|
{
|
||||||
@ -58,16 +60,18 @@ gint main (gint argc, gchar * argv[])
|
|||||||
GError *gerr = NULL;
|
GError *gerr = NULL;
|
||||||
GString *buffer;
|
GString *buffer;
|
||||||
char *filename;
|
char *filename;
|
||||||
char *srcdir = getenv ("srcdir");
|
|
||||||
gint rlength = 0;
|
gint rlength = 0;
|
||||||
glong wlength = 0;
|
glong wlength = 0;
|
||||||
gsize length_out;
|
gsize length_out;
|
||||||
const gchar encoding[] = "EUC-JP";
|
const gchar encoding[] = "EUC-JP";
|
||||||
GIOStatus status;
|
GIOStatus status;
|
||||||
|
|
||||||
if (!srcdir)
|
if (g_getenv ("G_TEST_DATA"))
|
||||||
srcdir = ".";
|
datapath = g_getenv ("G_TEST_DATA");
|
||||||
filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "iochannel-test-infile", NULL);
|
else
|
||||||
|
datapath = ".";
|
||||||
|
|
||||||
|
filename = g_build_filename (datapath, "iochannel-test-infile", NULL);
|
||||||
|
|
||||||
setbuf (stdout, NULL); /* For debugging */
|
setbuf (stdout, NULL); /* For debugging */
|
||||||
|
|
||||||
|
@ -30,6 +30,8 @@
|
|||||||
#include <gmodule.h>
|
#include <gmodule.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
static const gchar *datapath;
|
||||||
|
|
||||||
gchar* global_state;
|
gchar* global_state;
|
||||||
|
|
||||||
G_MODULE_EXPORT void g_clash_func (void);
|
G_MODULE_EXPORT void g_clash_func (void);
|
||||||
@ -85,12 +87,13 @@ main (int arg,
|
|||||||
if (!g_module_supported ())
|
if (!g_module_supported ())
|
||||||
g_error ("dynamic modules not supported");
|
g_error ("dynamic modules not supported");
|
||||||
|
|
||||||
dir = g_get_current_dir ();
|
if (g_getenv ("G_TEST_DATA"))
|
||||||
|
datapath = g_getenv ("G_TEST_DATA");
|
||||||
|
else
|
||||||
|
datapath = ".";
|
||||||
|
|
||||||
plugin_a = g_strconcat (dir, G_DIR_SEPARATOR_S "libmoduletestplugin_a",
|
plugin_a = g_build_filename (datapath, "libmoduletestplugin_a", NULL);
|
||||||
NULL);
|
plugin_b = g_build_filename (datapath, "libmoduletestplugin_b", NULL);
|
||||||
plugin_b = g_strconcat (dir, G_DIR_SEPARATOR_S "libmoduletestplugin_b",
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
g_free (dir);
|
g_free (dir);
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ int main (int argc, char **argv)
|
|||||||
FILE *infile;
|
FILE *infile;
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
char **strings;
|
char **strings;
|
||||||
char *srcdir = getenv ("srcdir");
|
const char *srcdir;
|
||||||
char *filename;
|
char *filename;
|
||||||
const char *locale;
|
const char *locale;
|
||||||
const char *test;
|
const char *test;
|
||||||
@ -21,8 +21,11 @@ int main (int argc, char **argv)
|
|||||||
char *current_locale = setlocale (LC_CTYPE, NULL);
|
char *current_locale = setlocale (LC_CTYPE, NULL);
|
||||||
gint result = 0;
|
gint result = 0;
|
||||||
|
|
||||||
if (!srcdir)
|
if (g_getenv ("G_TEST_DATA"))
|
||||||
|
srcdir = g_getenv ("G_TEST_DATA");
|
||||||
|
else
|
||||||
srcdir = ".";
|
srcdir = ".";
|
||||||
|
|
||||||
filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casemap.txt", NULL);
|
filename = g_strconcat (srcdir, G_DIR_SEPARATOR_S, "casemap.txt", NULL);
|
||||||
|
|
||||||
infile = fopen (filename, "r");
|
infile = fopen (filename, "r");
|
||||||
|
@ -308,7 +308,7 @@ process (gint line,
|
|||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
gchar *srcdir = getenv ("srcdir");
|
const gchar *srcdir;
|
||||||
gchar *testfile;
|
gchar *testfile;
|
||||||
gchar *contents;
|
gchar *contents;
|
||||||
GError *error = NULL;
|
GError *error = NULL;
|
||||||
@ -321,7 +321,9 @@ main (int argc, char **argv)
|
|||||||
GArray *ucs4;
|
GArray *ucs4;
|
||||||
Status status = VALID; /* Quiet GCC */
|
Status status = VALID; /* Quiet GCC */
|
||||||
|
|
||||||
if (!srcdir)
|
if (g_getenv ("G_TEST_DATA"))
|
||||||
|
srcdir = g_getenv ("G_TEST_DATA");
|
||||||
|
else
|
||||||
srcdir = ".";
|
srcdir = ".";
|
||||||
|
|
||||||
testfile = g_strconcat (srcdir, G_DIR_SEPARATOR_S "utf8.txt", NULL);
|
testfile = g_strconcat (srcdir, G_DIR_SEPARATOR_S "utf8.txt", NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user