mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
0676d630e7
Original commit message from CVS: threadb and threadc are unexpectedly passing on my system (glibc2.3.1 and linux-2.6.0-test9). Commenting them out because they are expectedly failing on other systems.
19 lines
562 B
Makefile
19 lines
562 B
Makefile
include ../Rules
|
|
|
|
tests_pass = thread1 thread2 thread3 thread4 threadf
|
|
tests_fail = thread5 threadd threade queue
|
|
# tests which unexpectedly pass: threadb threadc
|
|
|
|
queue_SOURCES = queue.c
|
|
queue_CFLAGS = $(AM_CFLAGS)
|
|
|
|
thread1_SOURCES = thread.c
|
|
thread1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
|
|
thread2_SOURCES = thread.c
|
|
thread2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
|
|
thread3_SOURCES = thread.c
|
|
thread3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
|
|
thread4_SOURCES = thread.c
|
|
thread4_CFLAGS = -DTESTNUM=4 $(AM_CFLAGS)
|
|
thread5_SOURCES = thread.c
|
|
thread5_CFLAGS = -DTESTNUM=5 $(AM_CFLAGS)
|