/
niceSOFT
/
make
Обзор
Документация
Войти
/
niceSOFT
/
make
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/scripts/features/dircache
31 строка
714 B
Paul Smith
[SV 41273] Allow the directory cache to be invalidated
30 ноя 2020, 01:59
30 ноя 2020, 01:59
9e2fa24
Код
Авторство
О чём код?
# -*-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;