[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: https://github.com/python/cpython/pull/2542 confirms that the "make clinic" test works, the CI fails with: Generated files not up to date M Modules/clinic/posixmodule.c.h M Modules/posixmodule.c -- I close the issue, thanks Zach for the automated tests!

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: https://github.com/python/cpython/pull/2543 confirms that the "make regen-all" test works, the CI fails with: Generated files not up to date M Include/Python-ast.h -- ___ Python tracker

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-07-03 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2612 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-07-03 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +2611 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-06-26 Thread STINNER Victor
STINNER Victor added the comment: make -j4 make -j4 regen-all clinic changes=`git status --porcelain` if ! test -z "$changes" then echo "Generated files not up to date" echo "$changes" exit 1 fi I understand that we build the whole Python, an

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-06-26 Thread STINNER Victor
STINNER Victor added the comment: Oh, Zachary: it seems like you already implemented this check, no? "Use Travis to make sure all generated files are up to date" [MERGED] https://github.com/python/cpython/pull/2080 -- ___ Python tracker

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-05-03 Thread STINNER Victor
STINNER Victor added the comment: I also asked if something similar should be done for autoconf? http://bugs.python.org/issue23404#msg292829 -- ___ Python tracker ___ ___

[issue30259] Test somehow that generated files are up to date: run make regen-all

2017-05-03 Thread STINNER Victor
New submission from STINNER Victor: bpo-23404 replaced "make touch" with "make regen-all". Generated files are no more regenerated based on file modification time anymore, the action is now explicit. Zachary Ware proposed to add a buildbot to check that generated files are up to date: run "ma