2
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.
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
28
include UtilsForTests.gmk
30
THIS_FILE := $(TOPDIR)/test/make/FixDepsFile.gmk
32
$(TOPDIR)/make/common/NativeCompilation.gmk \
35
OUTPUT_DIR := $(TESTMAKE_OUTPUTDIR)/fix-deps-file
36
$(call MakeDir, $(OUTPUT_DIR))
38
################################################################################
39
# The relevant case to test is when absolute paths aren't allowed.
40
ALLOW_ABSOLUTE_PATHS_IN_OUTPUT := false
42
include NativeCompilation.gmk
44
DEPS_FILE := $(OUTPUT_DIR)/deps.d
47
$(ECHO) "foo/bar1: \\" > $(DEPS_FILE).tmp
48
$(ECHO) "foo/baz1" >> $(DEPS_FILE).tmp
49
$(ECHO) "foo/bar : bar \\" >> $(DEPS_FILE).tmp
50
$(ECHO) " ./bar/baz /foo/baz" >> $(DEPS_FILE).tmp
51
$(call fix-deps-file, $(DEPS_FILE))
52
$(ECHO) "$(WORKSPACE_ROOT)/foo/bar1: \\" > $(DEPS_FILE).expected
53
$(ECHO) "$(WORKSPACE_ROOT)/foo/baz1" >> $(DEPS_FILE).expected
54
$(ECHO) "$(WORKSPACE_ROOT)/foo/bar : \\" >> $(DEPS_FILE).expected
55
$(ECHO) " $(WORKSPACE_ROOT)/bar \\" >> $(DEPS_FILE).expected
56
$(ECHO) " $(WORKSPACE_ROOT)/bar/baz \\" >> $(DEPS_FILE).expected
57
$(ECHO) " /foo/baz" >> $(DEPS_FILE).expected
58
$(DIFF) $(DEPS_FILE).expected $(DEPS_FILE)
60
TEST_TARGETS := test-fix-deps-file
62
################################################################################