| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | # uClibc misc tests# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.TESTS_DISABLED := outb tst-fnmatch bug-glob1 tst-gnuglobifeq ($(TARGET_avr32),y)TESTS_DISABLED += tst-inotifyendififeq  ($(UCLIBC_HAS_LFS),)TESTS_DISABLED += dirent64TESTS_DISABLED += tst-statfs # assuming host has LFS onendifCFLAGS_dirent64 := -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64ifeq ($(UCLIBC_LINUX_SPECIFIC),)TESTS_DISABLED += tst-inotifyendififeq ($(UCLIBC_HAS_GLOB),)TESTS_DISABLED += bug-glob2endififeq ($(UCLIBC_HAS_UTMPX),)TESTS_DISABLED += tst-utmpxendififeq ($(UCLIBC_HAS_UTMP),)TESTS_DISABLED += tst-utmpendifDODIFF_dirent    := 1DODIFF_dirent64  := 1DODIFF_tst-statfs := 1DODIFF_tst-statvfs := 1OPTS_bug-glob1   := $(PWD)OPTS_tst-fnmatch := < tst-fnmatch.inputMNTENTS = / /sys /proc /devOPTS_tst-statfs := $(MNTENTS)OPTS_tst-statvfs := $(MNTENTS)CFLAGS_bug-glob2 = -fPICCFLAGS_opendir-tst1 = -fPICCFLAGS_tst-inotify = -fPICCFLAGS_tst-utmp = -fPICCFLAGS_tst-utmpx = -fPIC
 |