tests/Makefile

Wed, 27 Dec 2023 16:04:38 +0100

author
Mike Becker <universe@uap-core.de>
date
Wed, 27 Dec 2023 16:04:38 +0100
changeset 770
ed710122af44
parent 768
0e1cf2cd500e
child 773
bbf2f18b3818
permissions
-rw-r--r--

migrates self-test for testing allocator - relates to #342

universe@753 1 # Copyright 2023 Mike Becker. All rights reserved.
universe@753 2 #
universe@753 3 # Redistribution and use in source and binary forms, with or without
universe@753 4 # modification, are permitted provided that the following conditions are met:
universe@753 5 #
universe@753 6 # 1. Redistributions of source code must retain the above copyright
universe@753 7 # notice, this list of conditions and the following disclaimer.
universe@753 8 #
universe@753 9 # 2. Redistributions in binary form must reproduce the above copyright
universe@753 10 # notice, this list of conditions and the following disclaimer in the
universe@753 11 # documentation and/or other materials provided with the distribution.
universe@753 12 #
universe@753 13 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@753 14 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@753 15 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@753 16 # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@753 17 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@753 18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@753 19 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@753 20 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@753 21 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@753 22 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@753 23
universe@753 24 include ../config.mk
universe@753 25
universe@766 26 CFLAGS += -I../src
universe@766 27
universe@754 28 TEST_DIR=$(build_dir)/tests
universe@753 29
universe@770 30 SRC = util_allocator.c test_utils.c test_hash_key.c ucxtest.c
universe@753 31
universe@766 32 OBJ_EXT=.o
universe@766 33 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT))
universe@766 34
universe@766 35 all: $(TEST_DIR) $(TEST_DIR)/ucxtest
universe@766 36
universe@767 37 $(TEST_DIR)/ucxtest: $(OBJ) $(build_dir)/libucx_static.a
universe@766 38 $(CC) -o $@ $+
universe@766 39
universe@766 40 $(build_dir)/libucx_static.a:
universe@766 41 test -f "$@"
universe@753 42
universe@753 43 $(TEST_DIR):
universe@766 44 $(MKDIR) $@
universe@766 45
universe@766 46 FORCE:
universe@766 47
universe@768 48 $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \
universe@768 49 ../src/cx/hash_key.h ../src/cx/common.h ../src/cx/string.h \
universe@768 50 ../src/cx/allocator.h
universe@768 51 @echo "Compiling $<"
universe@768 52 $(CC) -o $@ $(CFLAGS) -c $<
universe@768 53
universe@766 54 $(TEST_DIR)/test_map_generics$(OBJ_EXT): test_map_generics.c \
universe@766 55 test_map_generics.h ../src/cx/map.h ../src/cx/common.h \
universe@766 56 ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \
universe@766 57 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \
universe@766 58 ../src/cx/map.h
universe@766 59 @echo "Compiling $<"
universe@766 60 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 61
universe@767 62 $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c ../src/cx/test.h \
universe@767 63 ../src/cx/utils.h ../src/cx/common.h ../src/cx/buffer.h \
universe@767 64 ../src/cx/allocator.h ../src/szmul.c
universe@766 65 @echo "Compiling $<"
universe@766 66 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 67
universe@767 68 $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c ../src/cx/test.h
universe@766 69 @echo "Compiling $<"
universe@766 70 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 71
universe@770 72 $(TEST_DIR)/util_allocator$(OBJ_EXT): util_allocator.c util_allocator.h \
universe@770 73 ../src/cx/allocator.h ../src/cx/common.h ../src/cx/test.h
universe@770 74 @echo "Compiling $<"
universe@770 75 $(CC) -o $@ $(CFLAGS) -c $<
universe@770 76

mercurial