2003-05-18 22:59:51 +00:00
|
|
|
TOP_BUILDDIR=$(shell cd $(top_builddir) && pwd)
|
|
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(TOP_BUILDDIR) GST_REGISTRY=$(TOP_BUILDDIR)/testsuite/test-registry.xml
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
testprogs = thread1 thread2 thread3 threadb
|
|
|
|
testsfailing = threadc threadd threade threadf thread5 thread4
|
2001-12-05 18:39:20 +00:00
|
|
|
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
|
2002-11-13 17:06:23 +00:00
|
|
|
noinst_PROGRAMS = $(testsfailing)
|
|
|
|
|
2002-09-12 11:56:08 +00:00
|
|
|
LDADD = $(GST_LIBS)
|
2002-12-03 21:55:39 +00:00
|
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
2002-09-12 11:56:08 +00:00
|
|
|
|
|
|
|
thread1_SOURCES = thread.c
|
2002-12-03 21:55:39 +00:00
|
|
|
thread1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
|
2002-09-12 11:56:08 +00:00
|
|
|
thread2_SOURCES = thread.c
|
2002-12-03 21:55:39 +00:00
|
|
|
thread2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
|
2002-09-12 11:56:08 +00:00
|
|
|
thread3_SOURCES = thread.c
|
2002-12-03 21:55:39 +00:00
|
|
|
thread3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
|
2002-09-12 11:56:08 +00:00
|
|
|
thread4_SOURCES = thread.c
|
2002-12-03 21:55:39 +00:00
|
|
|
thread4_CFLAGS = -DTESTNUM=4 $(AM_CFLAGS)
|
2002-09-12 11:56:08 +00:00
|
|
|
thread5_SOURCES = thread.c
|
2002-12-03 21:55:39 +00:00
|
|
|
thread5_CFLAGS = -DTESTNUM=5 $(AM_CFLAGS)
|