test/make/TestCopyFiles.gmk
changeset 47334 09d386ddaa42
child 47751 f7e430cbfe34
equal deleted inserted replaced
47333:0c2e5ef6a1c6 47334:09d386ddaa42
       
     1 #
       
     2 # Copyright (c) 2017, 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.  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
       
    30 include UtilsForTests.gmk
       
    31 
       
    32 THIS_FILE := $(TOPDIR)/test/make/TestCopyFiles.gmk
       
    33 DEPS := $(THIS_FILE) \
       
    34     $(TOPDIR)/make/common/MakeBase.gmk \
       
    35     #
       
    36 
       
    37 OUTPUT_DIR := $(TESTMAKE_OUTPUTDIR)/copy-files
       
    38 $(call MakeDir, $(OUTPUT_DIR))
       
    39 
       
    40 ################################################################################
       
    41 # Test SetupCopyFiles with CacheFind and files with spaces in their names.
       
    42 
       
    43 SRC_DIR := $(OUTPUT_DIR)/src
       
    44 DEST_DIR := $(OUTPUT_DIR)/dest
       
    45 
       
    46 $(OUTPUT_DIR)/_src_created: $(DEPS)
       
    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 CacheFind, $(SRC_DIR)), \
       
    66 ))
       
    67 
       
    68 do-copy1: $(COPY_1)
       
    69 
       
    70 run-test1: $(OUTPUT_DIR)/_src_created
       
    71 	+$(MAKE) -f $(THIS_FILE) do-copy1
       
    72 	$(DIFF) -r $(SRC_DIR) $(DEST_DIR)
       
    73 
       
    74 TEST_TARGETS += run-test1
       
    75 
       
    76 .PHONY: do-copy1 run-test1
       
    77 
       
    78 ################################################################################
       
    79 
       
    80 all: $(TEST_TARGETS)