diff options
author | MacroFake <falke.marco@gmail.com> | 2022-06-07 10:37:29 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-06-07 10:37:34 +0200 |
commit | f66633d9cbe79f4ef4048fca6f16d914d257f77c (patch) | |
tree | b9c1cff3f443ac9bdd0c907b30cb8f7a9af347d7 /ci | |
parent | 581e2bdbac6f531ee4bdd8b3c9b317740bfe5cbf (diff) | |
parent | f26a496dfd0a7ce3833a10075027d7d5b0345e32 (diff) |
Merge bitcoin/bitcoin#25288: test: Reliably don't start itself (lint-all.py runs all tests twice)
f26a496dfd0a7ce3833a10075027d7d5b0345e32 test: clean up all-lint.py (Martin Leitner-Ankerl)
64d72c4c8734b9dd45cb61cb2c2baf98766b0163 test: rename lint-all.py to all-lint.py (Martin Leitner-Ankerl)
Pull request description:
When running `./test/lint/lint-all.py`, the script runs all tests but
also calls itself because the comparison with `__file__` doesn't work.
Comparing resolved paths gives reliable comparison, and lint-all.py doesn't call itself any more
ACKs for top commit:
laanwj:
Code review ACK f26a496dfd0a7ce3833a10075027d7d5b0345e32
Tree-SHA512: b44abdd685f7b48a6a9f48e96d97138b635c31c1c7ab543cb5636b5f49690ccd56fa6fec01ae7fcc16af01a613372ee77632f70c32059919b373aa8051953791
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/lint/06_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lint/06_script.sh b/ci/lint/06_script.sh index f174b4d074..84b3404e78 100755 --- a/ci/lint/06_script.sh +++ b/ci/lint/06_script.sh @@ -22,7 +22,7 @@ test/lint/git-subtree-check.sh src/univalue test/lint/git-subtree-check.sh src/leveldb test/lint/git-subtree-check.sh src/crc32c test/lint/check-doc.py -test/lint/lint-all.py +test/lint/all-lint.py if [ "$CIRRUS_REPO_FULL_NAME" = "bitcoin/bitcoin" ] && [ "$CIRRUS_PR" = "" ] ; then # Sanity check only the last few commits to get notified of missing sigs, |