script to report deprecated functions of text and their age in days.

This commit is contained in:
Campbell Barton
2011-07-18 09:49:26 +00:00
parent 9fa20e6d88
commit 35ce13562d
4 changed files with 152 additions and 4 deletions

View File

@@ -99,14 +99,18 @@ test:
# run pep8 check check on scripts we distribute.
test_pep8:
python source/tests/pep8.py > test_pep8.log 2>&1
python3 source/tests/pep8.py > test_pep8.log 2>&1
@echo "written: test_pep8.log"
# run some checks on our cmakefiles.
test_cmake:
python build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
python3 build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
@echo "written: test_cmake_consistency.log"
# run deprecation tests, see if we have anything to remove.
test_deprecated:
python3 source/tests/check_deprecated.py
clean:
make -C $(BUILD_DIR) clean