jdk

Форк
0
/
TestCopyFiles.gmk 
97 строк · 3.1 Кб
1
#
2
# Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
#
5
# This code is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.
8
#
9
# This code is distributed in the hope that it will be useful, but WITHOUT
10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12
# version 2 for more details (a copy is included in the LICENSE file that
13
# accompanied this code).
14
#
15
# You should have received a copy of the GNU General Public License version
16
# 2 along with this work; if not, write to the Free Software Foundation,
17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
#
19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
# or visit www.oracle.com if you need additional information or have any
21
# questions.
22
#
23

24
default: all
25

26
include $(SPEC)
27
include MakeBase.gmk
28
include CopyFiles.gmk
29
include UtilsForTests.gmk
30

31
THIS_FILE := $(TOPDIR)/test/make/TestCopyFiles.gmk
32
DEPS := $(THIS_FILE) \
33
    $(TOPDIR)/make/common/MakeBase.gmk \
34
    #
35

36
OUTPUT_DIR := $(TESTMAKE_OUTPUTDIR)/copy-files
37
$(call MakeDir, $(OUTPUT_DIR))
38

39
################################################################################
40
# Test SetupCopyFiles with CacheFind and files with spaces in their names.
41

42
SRC_DIR := $(OUTPUT_DIR)/src
43
DEST_DIR := $(OUTPUT_DIR)/dest
44

45
$(OUTPUT_DIR)/_src_created: $(DEPS)
46
	$(RM) -r $(DEST_DIR)
47
	$(RM) -r $(SRC_DIR)
48
	$(MKDIR) -p $(SRC_DIR)
49
	$(MKDIR) -p $(SRC_DIR)/foo
50
	$(TOUCH) $(SRC_DIR)/file
51
	$(TOUCH) $(SRC_DIR)/foo/foofile
52
	$(TOUCH) "$(SRC_DIR)/foo/foo file"
53
        # Spaces in directories only works with gnu make 4.0 or later
54
        ifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION))))
55
	  $(MKDIR) -p "$(SRC_DIR)/foo bar"
56
	  $(TOUCH) "$(SRC_DIR)/foo bar/foobarfile"
57
	  $(TOUCH) "$(SRC_DIR)/foo bar/foo bar file"
58
        endif
59
	$(LN) -s file "$(SRC_DIR)/link to file"
60
	$(TOUCH) $@
61

62
$(eval $(call SetupCopyFiles, COPY_1, \
63
    SRC := $(SRC_DIR), \
64
    DEST := $(DEST_DIR), \
65
    FILES := $(call ShellFindFiles, $(SRC_DIR)), \
66
))
67

68
# Optionally define a rule that deletes all the target files after the makefile
69
# has been parsed. GNU make has specific problems with this in combination with
70
# spaces in directory names.
71
ifeq ($(DELETE_FIRST), true)
72
  delete-targets:
73
	$(RM) -r $(DEST_DIR)
74
	$(ECHO) '$(DEST_DIR)/foo' '$(wildcard $(DEST_DIR)/foo)'
75

76
  $(COPY_1): delete-targets
77
endif
78

79
do-copy1: $(COPY_1)
80

81
run-test1: $(OUTPUT_DIR)/_src_created
82
	$(ECHO) "Copy 1 first time"
83
	+$(MAKE) -f $(THIS_FILE) do-copy1
84
	$(DIFF) -r $(SRC_DIR) $(DEST_DIR)
85
        # Rerun the copy a second time, with the targets present at make parse
86
        # time, but then deleted by a prerequisite rule.
87
	$(ECHO) "Copy 1 second time"
88
	+$(MAKE) -f $(THIS_FILE) do-copy1 DELETE_FIRST=true
89
	$(DIFF) -r $(SRC_DIR) $(DEST_DIR)
90

91
TEST_TARGETS += run-test1
92

93
.PHONY: do-copy1 run-test1 delete-targets
94

95
################################################################################
96

97
all: $(TEST_TARGETS)
98

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.