summaryrefslogtreecommitdiff
path: root/tests/scripts/features/dircache
blob: e5e846903ac16813592ff88e50f101a82ac2cea2 (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
26
27
28
29
30
31
#                                                               -*-mode: perl-*-

$description = "Test the directory cache behavior.";

# The first wildcard should bring the entire directory into the cache Then we
# create a new file "behind make's back" then see if the next wildcard detects
# it.

run_make_test(q!
_orig := $(wildcard ./*)
$(shell echo > anewfile)
_new := $(wildcard ./*)
$(info diff=$(filter-out $(_orig),$(_new)))
all:;@:
!,
              '', "diff=./anewfile\n");

rmfiles('anewfile');

run_make_test(q!
_orig := $(wildcard ./*)
$(file >anewfile)
_new := $(wildcard ./*)
$(info diff=$(filter-out $(_orig),$(_new)))
all:;@:
!,
              '', "diff=./anewfile\n");

rmfiles('anewfile');

1;