rename testcase 106
This commit is contained in:
parent
7f898abb82
commit
7eea5306e9
3 changed files with 5 additions and 4 deletions
|
@ -9,6 +9,7 @@ main(void)
|
||||||
pthread_condattr_t attr;
|
pthread_condattr_t attr;
|
||||||
pthread_cond_t condition;
|
pthread_cond_t condition;
|
||||||
|
|
||||||
|
/* This test fails if symbol versioning does not work */
|
||||||
pthread_condattr_init (&attr);
|
pthread_condattr_init (&attr);
|
||||||
pthread_condattr_setpshared (&attr, PTHREAD_PROCESS_SHARED);
|
pthread_condattr_setpshared (&attr, PTHREAD_PROCESS_SHARED);
|
||||||
printf ("%s\n", pthread_cond_init (&condition, &attr) ? "fail":"ok");
|
printf ("%s\n", pthread_cond_init (&condition, &attr) ? "fail":"ok");
|
|
@ -45,11 +45,11 @@ ifeq (-$(CONFIG_WIN32)-$(CONFIG_i386)$(CONFIG_arm)-,--yes-)
|
||||||
SKIP += 95_bitfields%.test # type_align is different on 32bit-non-windows
|
SKIP += 95_bitfields%.test # type_align is different on 32bit-non-windows
|
||||||
endif
|
endif
|
||||||
ifeq (-$(CONFIG_WIN32)-,-yes-)
|
ifeq (-$(CONFIG_WIN32)-,-yes-)
|
||||||
SKIP += 106_pthread.test # No pthread support
|
SKIP += 106_versym.test # No pthread support
|
||||||
SKIP += 114_bound_signal.test # No pthread support
|
SKIP += 114_bound_signal.test # No pthread support
|
||||||
endif
|
endif
|
||||||
ifneq (,$(filter OpenBSD FreeBSD NetBSD,$(TARGETOS)))
|
ifneq (,$(filter OpenBSD FreeBSD NetBSD,$(TARGETOS)))
|
||||||
SKIP += 106_pthread.test # no pthread_condattr_setpshared
|
SKIP += 106_versym.test # no pthread_condattr_setpshared
|
||||||
SKIP += 114_bound_signal.test # libc problem signal/fork
|
SKIP += 114_bound_signal.test # libc problem signal/fork
|
||||||
endif
|
endif
|
||||||
ifeq ($(TARGETOS),NetBSD)
|
ifeq ($(TARGETOS),NetBSD)
|
||||||
|
@ -91,8 +91,8 @@ GEN-ALWAYS =
|
||||||
120_alias.test : NORUN = true
|
120_alias.test : NORUN = true
|
||||||
|
|
||||||
# this test needs pthread
|
# this test needs pthread
|
||||||
106_pthread.test: FLAGS += -pthread
|
106_versym.test: FLAGS += -pthread
|
||||||
106_pthread.test: NORUN = true
|
106_versym.test: NORUN = true
|
||||||
|
|
||||||
# constructor/destructor
|
# constructor/destructor
|
||||||
108_constructor.test: NORUN = true
|
108_constructor.test: NORUN = true
|
||||||
|
|
Loading…
Reference in a new issue