tests/Makefile

Fri, 29 Dec 2023 17:27:14 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 29 Dec 2023 17:27:14 +0100
changeset 780
9965df621652
parent 778
4a72bc4f09f4
child 781
a786b0a89b37
permissions
-rw-r--r--

migrate printf tests - 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@777 26 CFLAGS += -I../src -Wno-clobbered
universe@766 27
universe@754 28 TEST_DIR=$(build_dir)/tests
universe@753 29
universe@780 30 SRC = util_allocator.c test_utils.c test_hash_key.c test_string.c \
universe@780 31 test_printf.c ucxtest.c
universe@753 32
universe@766 33 OBJ_EXT=.o
universe@766 34 OBJ=$(SRC:%.c=$(TEST_DIR)/%$(OBJ_EXT))
universe@766 35
universe@766 36 all: $(TEST_DIR) $(TEST_DIR)/ucxtest
universe@766 37
universe@767 38 $(TEST_DIR)/ucxtest: $(OBJ) $(build_dir)/libucx_static.a
universe@773 39 $(CC) -o $@ $(LDFLAGS) $+
universe@766 40
universe@766 41 $(build_dir)/libucx_static.a:
universe@766 42 test -f "$@"
universe@753 43
universe@753 44 $(TEST_DIR):
universe@766 45 $(MKDIR) $@
universe@766 46
universe@766 47 FORCE:
universe@766 48
universe@768 49 $(TEST_DIR)/test_hash_key$(OBJ_EXT): test_hash_key.c ../src/cx/test.h \
universe@768 50 ../src/cx/hash_key.h ../src/cx/common.h ../src/cx/string.h \
universe@768 51 ../src/cx/allocator.h
universe@768 52 @echo "Compiling $<"
universe@768 53 $(CC) -o $@ $(CFLAGS) -c $<
universe@768 54
universe@766 55 $(TEST_DIR)/test_map_generics$(OBJ_EXT): test_map_generics.c \
universe@766 56 test_map_generics.h ../src/cx/map.h ../src/cx/common.h \
universe@766 57 ../src/cx/collection.h ../src/cx/allocator.h ../src/cx/iterator.h \
universe@766 58 ../src/cx/string.h ../src/cx/hash_key.h ../src/cx/hash_map.h \
universe@766 59 ../src/cx/map.h
universe@766 60 @echo "Compiling $<"
universe@766 61 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 62
universe@780 63 $(TEST_DIR)/test_printf$(OBJ_EXT): test_printf.c ../src/cx/test.h \
universe@780 64 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
universe@780 65 ../src/cx/printf.h ../src/cx/string.h ../src/cx/allocator.h \
universe@780 66 ../src/cx/buffer.h
universe@780 67 @echo "Compiling $<"
universe@780 68 $(CC) -o $@ $(CFLAGS) -c $<
universe@780 69
universe@778 70 $(TEST_DIR)/test_string$(OBJ_EXT): test_string.c ../src/cx/test.h \
universe@778 71 util_allocator.h ../src/cx/allocator.h ../src/cx/common.h \
universe@778 72 ../src/cx/string.h ../src/cx/allocator.h
universe@777 73 @echo "Compiling $<"
universe@777 74 $(CC) -o $@ $(CFLAGS) -c $<
universe@777 75
universe@767 76 $(TEST_DIR)/test_utils$(OBJ_EXT): test_utils.c ../src/cx/test.h \
universe@767 77 ../src/cx/utils.h ../src/cx/common.h ../src/cx/buffer.h \
universe@767 78 ../src/cx/allocator.h ../src/szmul.c
universe@766 79 @echo "Compiling $<"
universe@766 80 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 81
universe@767 82 $(TEST_DIR)/ucxtest$(OBJ_EXT): ucxtest.c ../src/cx/test.h
universe@766 83 @echo "Compiling $<"
universe@766 84 $(CC) -o $@ $(CFLAGS) -c $<
universe@766 85
universe@770 86 $(TEST_DIR)/util_allocator$(OBJ_EXT): util_allocator.c util_allocator.h \
universe@770 87 ../src/cx/allocator.h ../src/cx/common.h ../src/cx/test.h
universe@770 88 @echo "Compiling $<"
universe@770 89 $(CC) -o $@ $(CFLAGS) -c $<
universe@770 90

mercurial