Sun, 29 Dec 2019 11:29:17 +0100
adds string replace functions
256
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
1 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
2 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
3 | # |
259 | 4 | # Copyright 2017 Mike Becker, Olaf Wintermann All rights reserved. |
256
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
5 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
6 | # Redistribution and use in source and binary forms, with or without |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
7 | # modification, are permitted provided that the following conditions are met: |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
8 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
9 | # 1. Redistributions of source code must retain the above copyright |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
10 | # notice, this list of conditions and the following disclaimer. |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
11 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
12 | # 2. Redistributions in binary form must reproduce the above copyright |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
13 | # notice, this list of conditions and the following disclaimer in the |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
14 | # documentation and/or other materials provided with the distribution. |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
15 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
16 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
17 | # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
18 | # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
19 | # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
20 | # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
21 | # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
22 | # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
23 | # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
24 | # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
25 | # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
26 | # POSSIBILITY OF SUCH DAMAGE. |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
27 | # |
2c21b42cf11d
documentation will now be generated using pandoc
Mike Becker <universe@uap-core.de>
parents:
254
diff
changeset
|
28 | |
252
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
29 | TESTS = ucxtest |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
30 | check_PROGRAMS = ucxtest |
254
c45c385ac578
fixes include path and non-cpp build for test program
Mike Becker <universe@uap-core.de>
parents:
252
diff
changeset
|
31 | ucxtest_CFLAGS = -I$(top_srcdir)/src |
252
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
32 | ucxtest_SOURCES = main.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
33 | ucxtest_SOURCES += allocator_tests.c |
334
bc81faa9afda
adds array interface and tests
Mike Becker <universe@uap-core.de>
parents:
259
diff
changeset
|
34 | ucxtest_SOURCES += array_tests.c |
252
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
35 | ucxtest_SOURCES += list_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
36 | ucxtest_SOURCES += avl_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
37 | ucxtest_SOURCES += mpool_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
38 | ucxtest_SOURCES += stack_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
39 | ucxtest_SOURCES += map_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
40 | ucxtest_SOURCES += prop_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
41 | ucxtest_SOURCES += string_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
42 | ucxtest_SOURCES += logging_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
43 | ucxtest_SOURCES += buffer_tests.c |
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
44 | ucxtest_SOURCES += utils_tests.c |
358
885f31c6098b
tells libtool to prefer the static library to avoid accidental testing against a previously installed version of ucx
Mike Becker <universe@uap-core.de>
parents:
334
diff
changeset
|
45 | ucxtest_LDFLAGS = -static |
252
6342cbbd1922
removes custom make files and adds autoconf support
Mike Becker <universe@uap-core.de>
parents:
diff
changeset
|
46 | ucxtest_LDADD = ../src/libucx.la |