Changeset 5ef4008 for tests/Makefile.am
- Timestamp:
- Sep 13, 2024, 2:43:22 PM (6 months ago)
- Branches:
- master
- Children:
- 8c79dc3c
- Parents:
- c494b84 (diff), 9739c56f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
rc494b84 r5ef4008 81 81 avltree/avl-private.h \ 82 82 avltree/avl.h \ 83 configs/.in/parseconfig-all.txt \84 configs/.in/parseconfig-errors.txt \85 configs/.in/parseconfig-missing.txt \86 83 exceptions/except-io.hfa \ 87 84 exceptions/with-threads.hfa \ 88 io/.in/io.data \89 io/.in/many_read.data \90 85 meta/fork+exec.hfa \ 91 86 concurrency/clib_tls.c \ … … 100 95 echo "Gathering test files" 101 96 for file in `${TEST_PY} --list-dist`; do \ 102 if test -f ${srcdir}/$${file}; then \97 if ls ${srcdir}/$${file} > /dev/null 2>&1; then \ 103 98 ${MKDIR_P} $$(dirname ${distdir}/$${file}); \ 104 cp -df ${srcdir}/$${file} $ {distdir}/$${file}; \99 cp -df ${srcdir}/$${file} $$(dirname ${distdir}/$${file}); \ 105 100 fi; \ 106 101 done
Note: See TracChangeset
for help on using the changeset viewer.