2003-01-21 22:11:21 +00:00
|
|
|
testprogs = thread1 thread2 thread3 thread5 threadb
|
|
|
|
testsfailing = threadc threadd threade threadf 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)
|
|
|
|
|
2003-01-05 18:57:26 +00:00
|
|
|
GST_PLUGIN_PATH=$(shell cd $(top_builddir) && pwd)
|
|
|
|
|
|
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=`pwd`test-registry.xml
|
|
|
|
|
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)
|