Changes in tests/Makefile.am [4daf79f:94672ba]
- File:
-
- 1 edited
-
tests/Makefile.am (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
r4daf79f r94672ba 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon May 1 1 6:45:07202314 ## Update Count : 14 413 ## Last Modified On : Mon May 1 17:25:24 2023 14 ## Update Count : 145 15 15 ############################################################################### 16 16 … … 101 101 dist-hook: 102 102 echo "Gathering test files" 103 for file in `$(TEST_PY) --list-dist`; do \104 if test -f $(srcdir)/$$( file); then \105 $(MKDIR_P) $$(dirname $(distdir)/$$( file)); \106 cp -df $(srcdir)/$$( file) $(distdir)/$$(file); \103 for test_file in `$(TEST_PY) --list-dist`; do \ 104 if test -f $(srcdir)/$$(test_file); then \ 105 $(MKDIR_P) $$(dirname $(distdir)/$$(test_file)); \ 106 cp -df $(srcdir)/$$(test_file) $(distdir)/$$(test_file); \ 107 107 fi; \ 108 108 done … … 116 116 #---------------------------------------------------------------------------------------------------------------- 117 117 118 all-local : 118 all-local : # This name is important to automake and implies the default build target. 119 119 @+$(TEST_PY) --debug=$(debug) --install=$(installed) --archive-errors=$(archiveerrors) $(concurrent) $(timeouts) $(ARCH) --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 120 120
Note:
See TracChangeset
for help on using the changeset viewer.