mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
9d804f0b00
Original commit message from CVS: cleanups in code fix tests to run and complete if they can move threadb to failing tests since it doesn't work with basicomega (crashes in the mmap)
22 lines
490 B
Makefile
22 lines
490 B
Makefile
testprogs = thread1 thread2 thread3 thread4 thread5
|
|
testsfailing = threadb
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
noinst_PROGRAMS = $(testsfailing)
|
|
|
|
LDADD = $(GST_LIBS)
|
|
CFLAGS = $(GST_CFLAGS)
|
|
|
|
thread1_SOURCES = thread.c
|
|
thread1_CFLAGS = -DTESTNUM=1
|
|
thread2_SOURCES = thread.c
|
|
thread2_CFLAGS = -DTESTNUM=2
|
|
thread3_SOURCES = thread.c
|
|
thread3_CFLAGS = -DTESTNUM=3
|
|
thread4_SOURCES = thread.c
|
|
thread4_CFLAGS = -DTESTNUM=4
|
|
thread5_SOURCES = thread.c
|
|
thread5_CFLAGS = -DTESTNUM=5
|