author | wetmore |
Wed, 16 May 2018 10:08:23 -0700 | |
branch | JDK-8145252-TLS13-branch |
changeset 56563 | efd40d6fa612 |
parent 47334 | 09d386ddaa42 |
child 52186 | 0dac3131b0fd |
permissions | -rw-r--r-- |
25854 | 1 |
# |
44027 | 2 |
# Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved. |
25854 | 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. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
default: all |
|
27 |
||
28 |
include $(SPEC) |
|
29 |
include MakeBase.gmk |
|
47334
09d386ddaa42
8189095: Import JMC from artifactory using Jib and main makefiles
erikj
parents:
47217
diff
changeset
|
30 |
include UtilsForTests.gmk |
25854 | 31 |
|
47217 | 32 |
THIS_FILE := $(TOPDIR)/test/make/TestMakeBase.gmk |
25854 | 33 |
DEPS := $(THIS_FILE) \ |
47217 | 34 |
$(TOPDIR)/make/common/MakeBase.gmk \ |
25854 | 35 |
# |
36 |
||
37 |
OUTPUT_DIR := $(TESTMAKE_OUTPUTDIR)/make-base |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
38 |
$(call MakeDir, $(OUTPUT_DIR)) |
25854 | 39 |
|
40 |
################################################################################ |
|
41 |
# Escape $ |
|
42 |
ifneq ($(call EscapeDollar, foo$$bar), foo\$$bar) |
|
43 |
$(error EscapeDollar failed $(call EscapeDollar, foo$$bar) foo\$$bar) |
|
44 |
endif |
|
45 |
||
46 |
ESCAPE_DOLLAR_DIR := $(OUTPUT_DIR)/escape-dollar |
|
47 |
||
48 |
$(ESCAPE_DOLLAR_DIR)/_escape_dollar: $(DEPS) |
|
49 |
$(RM) -r $(@D) |
|
50 |
$(MKDIR) -p $(@D) |
|
51 |
$(ECHO) foo\$$bar > $(@D)/file1 |
|
52 |
$(ECHO) $(call EscapeDollar, foo$$bar) > $(@D)/file2 |
|
53 |
$(ECHO) $(call EscapeDollar, foo\$$bar) > $(@D)/file3 |
|
54 |
$(DIFF) $(@D)/file1 $(@D)/file2 |
|
55 |
$(DIFF) $(@D)/file1 $(@D)/file3 |
|
56 |
$(TOUCH) $@ |
|
57 |
||
58 |
TEST_TARGETS += $(ESCAPE_DOLLAR_DIR)/_escape_dollar |
|
59 |
||
60 |
################################################################################ |
|
32553
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
61 |
# Test containing and not-containing |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
62 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
63 |
CONT_LIST := foo bar baz foobar foobaz |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
64 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
65 |
# Param 1 - string to look for |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
66 |
# Param 2 - expected result |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
67 |
define TestContaining |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
68 |
value := $$(call containing, $1, $(CONT_LIST)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
69 |
ifneq ($$(value), $2) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
70 |
$$(info (call containing, $1, $(CONT_LIST))) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
71 |
$$(error result >$$(value)<, expected >$2<) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
72 |
endif |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
73 |
endef |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
74 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
75 |
$(eval $(call TestContaining,bar,bar foobar)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
76 |
$(eval $(call TestContaining,foo bar,foo bar foobar foobaz)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
77 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
78 |
# Param 1 - string to look for |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
79 |
# Param 2 - expected result |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
80 |
define TestNotContaining |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
81 |
value := $$(call not-containing, $1, $(CONT_LIST)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
82 |
ifneq ($$(value), $2) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
83 |
$$(info (call not-containing, $1, $(CONT_LIST))) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
84 |
$$(error result >$$(value)<, expected >$2<) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
85 |
endif |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
86 |
endef |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
87 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
88 |
$(eval $(call TestNotContaining,bar,foo baz foobaz)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
89 |
$(eval $(call TestNotContaining,foo bar,baz)) |
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
90 |
|
418e3b5ff477
8136383: Improve make utilities containing and not-containing
erikj
parents:
30095
diff
changeset
|
91 |
################################################################################ |
28607
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
92 |
# Test Equals |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
93 |
|
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
94 |
EQUALS_VALUE1 := value1$(SPACE) |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
95 |
EQUALS_VALUE2 := value2 |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
96 |
|
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
97 |
ifneq ($(call equals, $(EQUALS_VALUE1), $(EQUALS_VALUE2)), ) |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
98 |
$(error The strings >$(EQUALS_VALUE1)< and >$(EQUALS_VALUE2)< are equal) |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
99 |
endif |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
100 |
|
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
101 |
ifeq ($(call equals, $(EQUALS_VALUE1), $(EQUALS_VALUE1)), ) |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
102 |
$(error The strings >$(EQUALS_VALUE1)< and >$(EQUALS_VALUE1)< are not equal) |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
103 |
endif |
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
104 |
|
380f123263d8
8071651: infinite build loops in 9-dev windows platform on Jan 26
erikj
parents:
28600
diff
changeset
|
105 |
################################################################################ |
30095
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
106 |
# Test remove-prefixes |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
107 |
|
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
108 |
$(eval $(call assert-equals, \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
109 |
$(call remove-prefixes, pre, prefix postfix), fix postfix, \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
110 |
Prefixes not properly removed)) |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
111 |
|
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
112 |
$(eval $(call assert-equals, \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
113 |
$(call remove-prefixes, pre post, prefix postfix), fix fix, \ |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
114 |
Prefixes not properly removed)) |
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
115 |
|
0034766ccb09
8079344: Allow custom or platform specific java source to automatically override shared source
erikj
parents:
29312
diff
changeset
|
116 |
################################################################################ |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
117 |
# Test ShellQuote |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
118 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
119 |
SHELL_QUOTE_VALUE := foo '""' "''" bar |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
120 |
SHELL_QUOTE_RESULT := $(shell $(ECHO) $(call ShellQuote, \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
121 |
$(SHELL_QUOTE_VALUE))) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
122 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
123 |
ifneq ($(SHELL_QUOTE_VALUE), $(SHELL_QUOTE_RESULT)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
124 |
$(error Expected: >$(SHELL_QUOTE_VALUE)< - Result: >$(SHELL_QUOTE_RESULT)<) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
125 |
endif |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
126 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
127 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
128 |
# Test read and write to file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
129 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
130 |
READ_WRITE_FILE := $(OUTPUT_DIR)/read-write |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
131 |
READ_WRITE_VALUE := foo '""' "''" \t\n\\ bar |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
132 |
$(call WriteFile, $(READ_WRITE_VALUE), $(READ_WRITE_FILE)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
133 |
READ_WRITE_RESULT := $(call ReadFile, $(READ_WRITE_FILE)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
134 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
135 |
ifneq ($(READ_WRITE_VALUE), $(READ_WRITE_RESULT)) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
136 |
$(error Expected: >$(READ_WRITE_VALUE)< - Result: >$(READ_WRITE_RESULT)<) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
137 |
endif |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
138 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
139 |
################################################################################ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
140 |
# Test creating dependencies on make variables |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
141 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
142 |
VARDEP_DIR := $(OUTPUT_DIR)/vardep |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
143 |
VARDEP_SRC_FILE := $(VARDEP_DIR)/src-file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
144 |
VARDEP_TARGET_FILE := $(VARDEP_DIR)/target-file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
145 |
VARDEP_FLAG_FILE := $(VARDEP_DIR)/flag-file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
146 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
147 |
$(VARDEP_DIR)/src-file: |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
148 |
$(MKDIR) -p $(@D) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
149 |
$(ECHO) "some string XXX" > $@ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
150 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
151 |
$(VARDEP_TARGET_FILE): $(VARDEP_DIR)/src-file \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
152 |
$(call DependOnVariable, VARDEP_TEST_VAR) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
153 |
$(MKDIR) -p $(@D) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
154 |
$(SED) -e 's/XXX/$(VARDEP_TEST_VAR)/g' $< > $@ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
155 |
$(TOUCH) $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
156 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
157 |
test-vardep: |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
158 |
$(RM) $(VARDEP_SRC_FILE) $(VARDEP_TARGET_FILE) $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
159 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
160 |
# Simply create the target file and verify that it has the correct value |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
161 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
162 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR=value1 $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
163 |
$(PRINTF) "Expecting value1: %s\n" "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
164 |
test "some string value1" = "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
165 |
test -e $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
166 |
# |
44027 | 167 |
# Make the target file again and verify that the value is updated with |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
168 |
# the new value |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
169 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
170 |
$(SLEEP_ON_MAC) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
171 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR=value2 $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
172 |
$(PRINTF) "Expecting value2: %s\n" "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
173 |
test "some string value2" = "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
174 |
test -e $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
175 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
176 |
# Make the target again with the same value and verify that the recipe |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
177 |
# was never run by checking that the flag file was not recreated |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
178 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
179 |
$(SLEEP_ON_MAC) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
180 |
$(RM) $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
181 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR=value2 $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
182 |
$(PRINTF) "Expecting value2: %s\n" "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
183 |
test "some string value2" = "`$(CAT) $(VARDEP_DIR)/target-file`" |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
184 |
test ! -e $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
185 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
186 |
# Test running with spaces at the end and the middle of the value |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
187 |
# and verify that the file isn't rewritten the second time |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
188 |
# |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
189 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR="value3 foo " $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
190 |
$(RM) $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
191 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR="value3 foo" $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
192 |
test ! -e $(VARDEP_FLAG_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
193 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR=" value3 foo" $(VARDEP_TARGET_FILE) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
194 |
test ! -e $(VARDEP_FLAG_FILE) |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
195 |
# |
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
196 |
# Test including some problematic characters |
41875 | 197 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR='value4 \$$ORIGIN' $(VARDEP_TARGET_FILE) |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
198 |
$(RM) $(VARDEP_FLAG_FILE) |
41875 | 199 |
$(MAKE) -f $(THIS_FILE) VARDEP_TEST_VAR='value4 \$$ORIGIN' $(VARDEP_TARGET_FILE) |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
200 |
test ! -e $(VARDEP_FLAG_FILE) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
201 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
202 |
# Test specifying a specific value file to store variable in |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
203 |
VARDEP_VALUE_FILE := $(VARDEP_DIR)/value-file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
204 |
VARDEP_TEST_VAR2 := value3 |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
205 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
206 |
VARDEP_RETURN_VALUE := $(call DependOnVariable, VARDEP_TEST_VAR2, $(VARDEP_VALUE_FILE)) |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
207 |
$(eval $(call assert-equals, $(VARDEP_RETURN_VALUE), $(VARDEP_VALUE_FILE), \ |
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
208 |
Wrong filename returned)) |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
209 |
-include $(VARDEP_VALUE_FILE) |
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
210 |
$(eval $(call assert-equals, $(VARDEP_TEST_VAR2_old), $(VARDEP_TEST_VAR2), \ |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
211 |
Wrong contents in vardeps file)) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
212 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
213 |
# Test with a variable value containing some problematic characters |
42134
bbcdb49521b1
8169860: Clean up and unify the refactored Javadoc generation
ihse
parents:
41875
diff
changeset
|
214 |
VARDEP_TEST_VAR3 := foo '""' "''" bar \$$ORIGIN &\#x00a9 |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
215 |
VARDEP_VALUE_FILE := $(call DependOnVariable, VARDEP_TEST_VAR3) |
33054
bcb9f5ea5761
8140484: Vardeps broken when variable value contains '$'
erikj
parents:
32807
diff
changeset
|
216 |
-include $(VARDEP_VALUE_FILE) |
42134
bbcdb49521b1
8169860: Clean up and unify the refactored Javadoc generation
ihse
parents:
41875
diff
changeset
|
217 |
$(eval $(call assert-equals, $(call EscapeHash,$(VARDEP_TEST_VAR3_old)), \ |
bbcdb49521b1
8169860: Clean up and unify the refactored Javadoc generation
ihse
parents:
41875
diff
changeset
|
218 |
$(call EscapeHash,$(VARDEP_TEST_VAR3)), \ |
32807
20386e6d858f
8136385: Various build speed improvements for windows
erikj
parents:
32553
diff
changeset
|
219 |
Wrong contents in vardep file)) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
220 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
221 |
TEST_TARGETS += test-vardep |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
222 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
25854
diff
changeset
|
223 |
################################################################################ |
29312
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
224 |
# Test sequence |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
225 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
226 |
ifneq ($(call sequence, 1, 1), 1) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
227 |
$(error Sequence 1, 1 should be "1", but was $(call sequence, 1, 1)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
228 |
endif |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
229 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
230 |
ifneq ($(call sequence, 2, 3), 2 3) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
231 |
$(error Sequence 2, 3 should be "2 3", but was $(call sequence, 2, 3)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
232 |
endif |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
233 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
234 |
ifneq ($(call sequence, 4, 9), 4 5 6 7 8 9) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
235 |
$(error Sequence 4, 9 should be "4 5 6 7 8 9", but was $(call sequence, 4, 9)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
236 |
endif |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
237 |
|
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
238 |
ifneq ($(call sequence, 5, 15), 5 6 7 8 9 10 11 12 13 14 15) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
239 |
$(error Sequence 5, 15 should be "5 6 7 8 9 10 11 12 13 14 15", \ |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
240 |
but was $(call sequence, 5, 15)) |
f3f859137ce6
8074988: Reduce boilerplate in Setup* macro definitions
erikj
parents:
28607
diff
changeset
|
241 |
endif |
25854 | 242 |
|
37030 | 243 |
################################################################################ |
244 |
# Test that PathList is safe when called multiple nested times. |
|
245 |
||
246 |
PATHLIST_INPUT := foo bar baz |
|
247 |
||
248 |
$(eval $(call assert-equals, \ |
|
249 |
$(call PathList, $(call PathList, $(PATHLIST_INPUT))), \ |
|
250 |
$(call PathList, $(PATHLIST_INPUT)), \ |
|
251 |
PathList call not safe for calling twice)) |
|
252 |
||
41260 | 253 |
################################################################################ |
254 |
# Test FindCommonPathPrefix |
|
255 |
||
256 |
$(eval $(call assert-equals, \ |
|
257 |
$(call FindCommonPathPrefix, /foo/bar/baz, /foo/bar/banan), \ |
|
258 |
/foo/bar, \ |
|
259 |
FindCommonPathPrefix, \ |
|
260 |
)) |
|
261 |
||
262 |
$(eval $(call assert-equals, \ |
|
263 |
$(call FindCommonPathPrefix, /foo/bar/baz, /foo/bar), \ |
|
264 |
/foo/bar, \ |
|
265 |
FindCommonPathPrefix, \ |
|
266 |
)) |
|
267 |
||
268 |
$(eval $(call assert-equals, \ |
|
269 |
$(call FindCommonPathPrefix, /foo/bar/baz, /foo/bar/), \ |
|
270 |
/foo/bar, \ |
|
271 |
FindCommonPathPrefix, \ |
|
272 |
)) |
|
273 |
||
274 |
$(eval $(call assert-equals, \ |
|
275 |
$(call FindCommonPathPrefix, foo/bar/baz, foo/bar/banan), \ |
|
276 |
foo/bar, \ |
|
277 |
FindCommonPathPrefix, \ |
|
278 |
)) |
|
279 |
||
280 |
$(eval $(call assert-equals, \ |
|
281 |
$(call FindCommonPathPrefix, foo/bar/baz, /foo/bar/banan), \ |
|
282 |
, \ |
|
283 |
FindCommonPathPrefix, \ |
|
284 |
)) |
|
285 |
||
286 |
################################################################################ |
|
287 |
# DirToDotDot |
|
288 |
||
289 |
$(eval $(call assert-equals, \ |
|
290 |
$(call DirToDotDot, foo/bar/baz/), \ |
|
291 |
../../.., \ |
|
292 |
DirToDotDot, \ |
|
293 |
)) |
|
294 |
||
295 |
$(eval $(call assert-equals, \ |
|
296 |
$(call DirToDotDot, foo/bar), \ |
|
297 |
../.., \ |
|
298 |
DirToDotDot, \ |
|
299 |
)) |
|
300 |
||
301 |
$(eval $(call assert-equals, \ |
|
302 |
$(call DirToDotDot, /foo), \ |
|
303 |
.., \ |
|
304 |
DirToDotDot, \ |
|
305 |
)) |
|
306 |
||
307 |
################################################################################ |
|
308 |
# RelativePath |
|
309 |
||
310 |
$(eval $(call assert-equals, \ |
|
311 |
$(call RelativePath, foo/bar/baz, foo/bar/banan), \ |
|
312 |
../baz, \ |
|
313 |
RelativePath, \ |
|
314 |
)) |
|
315 |
||
316 |
$(eval $(call assert-equals, \ |
|
317 |
$(call RelativePath, foo/bar/baz/banan/kung, foo/bar/banan/kung), \ |
|
318 |
../../baz/banan/kung, \ |
|
319 |
RelativePath, \ |
|
320 |
)) |
|
321 |
||
322 |
$(eval $(call assert-equals, \ |
|
323 |
$(call RelativePath, /foo/bar/baz/banan/kung, /foo/bar/banan/kung/), \ |
|
324 |
../../baz/banan/kung, \ |
|
325 |
RelativePath, \ |
|
326 |
)) |
|
327 |
||
328 |
################################################################################ |
|
44027 | 329 |
# Test ParseKeywordVariable |
330 |
||
331 |
KWBASE := APA=banan;GURKA=tomat;COUNT=1%202%203%204%205;SUM=1+2+3+4+5;MANY_WORDS=I have the best words. |
|
332 |
||
333 |
$(eval $(call ParseKeywordVariable, KWBASE, \ |
|
334 |
KEYWORDS := APA GURKA SUM, \ |
|
335 |
STRING_KEYWORDS := COUNT MANY_WORDS, \ |
|
336 |
)) |
|
337 |
||
338 |
$(eval $(call assert-equals, \ |
|
339 |
$(KWBASE_APA), \ |
|
340 |
banan, \ |
|
341 |
ParseKeywordVariable failed to parse APA, \ |
|
342 |
)) |
|
343 |
||
344 |
$(eval $(call assert-equals, \ |
|
345 |
$(KWBASE_COUNT), \ |
|
346 |
1 2 3 4 5, \ |
|
347 |
ParseKeywordVariable failed to parse COUNT, \ |
|
348 |
)) |
|
349 |
||
350 |
$(eval $(call assert-equals, \ |
|
351 |
$(KWBASE_SUM), \ |
|
352 |
1+2+3+4+5, \ |
|
353 |
ParseKeywordVariable failed to parse SUM, \ |
|
354 |
)) |
|
355 |
||
356 |
$(eval $(call assert-equals, \ |
|
357 |
$(KWBASE_MANY_WORDS), \ |
|
358 |
I have the best words., \ |
|
359 |
ParseKeywordVariable failed to parse MANY_WORDS, \ |
|
360 |
)) |
|
361 |
||
362 |
# Simulate variable set from command line by using "override" |
|
363 |
override KWBASE_WEIRD_GURKA := paprika |
|
364 |
KWBASE_WEIRD := ;;APA=banan;;;GURKA=apelsin;APA=skansen;; |
|
365 |
||
366 |
$(eval $(call ParseKeywordVariable, KWBASE_WEIRD, \ |
|
367 |
KEYWORDS := APA GURKA SUM, \ |
|
368 |
STRING_KEYWORDS := COUNT, \ |
|
369 |
)) |
|
370 |
||
371 |
$(eval $(call assert-equals, \ |
|
372 |
$(KWBASE_WEIRD_APA), \ |
|
373 |
skansen, \ |
|
374 |
ParseKeywordVariable failed to overwrite APA, \ |
|
375 |
)) |
|
376 |
||
377 |
$(eval $(call assert-equals, \ |
|
378 |
$(KWBASE_WEIRD_GURKA), \ |
|
379 |
paprika, \ |
|
380 |
ParseKeywordVariable failed to preserve GURKA, \ |
|
381 |
)) |
|
382 |
||
383 |
################################################################################ |
|
41260 | 384 |
|
25854 | 385 |
all: $(TEST_TARGETS) |