blob: 8afc013d76a421233fc500c4e34764fade93f6c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# uClibc time tests
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
TESTS_DISABLED := bug-asctime bug-asctime_r time tst-mktime2 tst-posixtz \
tst-strftime tst-strptime tst-timezone
ifeq ($(TARGET_avr32),y)
TESTS_DISABLED += tst-timerfd
endif
ifneq ($(UCLIBC_HAS_XLOCALE),y)
TESTS_DISABLED += tst-ftime_l
endif
ifneq ($(UCLIBC_HAS_WCHAR)$(UCLIBC_HAS_LOCALE),yy)
TESTS_DISABLED += tst_wcsftime
endif
CFLAGS_tst-strptime2 := -std=c99
CFLAGS_tst-ctime = -fPIC
CFLAGS_tst-futimens1 = -fPIC
CFLAGS_tst-timerfd = -fPIC
DODIFF_futimens1 := 1
DODIFF_tst_wcsftime := 1
|