mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
Merge pull request #387 from dkg/clean-syscall-tests
clean up tests related to syscall
This commit is contained in:
@@ -7,12 +7,15 @@ SRC = timetest.c
|
||||
OBJ = ${SRC:.c=.o}
|
||||
|
||||
TEST_SNIPPETS = $(notdir $(basename $(wildcard snippets/*.c)))
|
||||
EXPECTATIONS= $(notdir $(basename $(wildcard snippets/*.variable)))
|
||||
EXPECTATIONS = $(notdir $(basename $(wildcard snippets/*.variable)))
|
||||
|
||||
ALL_TESTS = timetest test
|
||||
|
||||
ifneq ($(filter -DINTERCEPT_SYSCALL,${CFLAGS}),)
|
||||
ALL_TESTS += confirm_variadic_promotion
|
||||
else
|
||||
TEST_SNIPPETS := $(filter-out syscall%,${TEST_SNIPPETS})
|
||||
EXPECTATIONS := $(filter-out syscall%,${EXPECTATIONS})
|
||||
endif
|
||||
|
||||
all: $(ALL_TESTS)
|
||||
|
||||
Reference in New Issue
Block a user