mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
833 B
Makefile
23 lines
833 B
Makefile
|
#T returncode-on: {'win32': 2}
|
||
|
$(shell \
|
||
|
touch test.file; \
|
||
|
ln -s test.file test.symlink; \
|
||
|
ln -s test.missing missing.symlink; \
|
||
|
touch .testhidden; \
|
||
|
mkdir foo; \
|
||
|
touch foo/testfile; \
|
||
|
ln -s foo symdir; \
|
||
|
)
|
||
|
|
||
|
all:
|
||
|
test "$(abspath test.file test.symlink)" = "$(CURDIR)/test.file $(CURDIR)/test.symlink"
|
||
|
test "$(realpath test.file test.symlink)" = "$(CURDIR)/test.file $(CURDIR)/test.file"
|
||
|
test "$(sort $(wildcard *))" = "foo symdir test.file test.symlink"
|
||
|
test "$(sort $(wildcard .*))" = ". .. .testhidden"
|
||
|
test "$(sort $(wildcard test*))" = "test.file test.symlink"
|
||
|
test "$(sort $(wildcard foo/*))" = "foo/testfile"
|
||
|
test "$(sort $(wildcard ./*))" = "./foo ./symdir ./test.file ./test.symlink"
|
||
|
test "$(sort $(wildcard f?o/*))" = "foo/testfile"
|
||
|
test "$(sort $(wildcard */*))" = "foo/testfile symdir/testfile"
|
||
|
@echo TEST-PASS
|