Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-04-17 05:33:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-17 05:33:40 +0300
commitcbd6c5735da1f49a7293e4c2aa68f8ccd0812f7e (patch)
tree230cde5eaaccb83394d0e2669933abe3a7aa2997 /GNUmakefile
parent0f0436c15e00df4a04b028ac5781f5255fa66310 (diff)
GNUmakefile: remove style checking targets
This has been removed since clang-format now enforces code-style.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 98bfded4ec7..e3bb3eaff7a 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -71,17 +71,6 @@ Testing Targets
which are tagged to use the stricter formatting
* test_deprecated:
Checks for deprecation tags in our code which may need to be removed
- * test_style_c:
- Checks C/C++ conforms with blenders style guide:
- https://wiki.blender.org/wiki/Source/Code_Style
- * test_style_c_qtc:
- Same as test_style but outputs QtCreator tasks format
- * test_style_osl:
- Checks OpenShadingLanguage conforms with blenders style guide:
- https://wiki.blender.org/wiki/Source/Code_Style
- * test_style_osl_qtc:
- Checks OpenShadingLanguage conforms with blenders style guide:
- https://wiki.blender.org/wiki/Source/Code_Style
Static Source Code Checking
Not associated with building Blender.
@@ -402,45 +391,6 @@ test_cmake: .FORCE
test_deprecated: .FORCE
$(PYTHON) tests/check_deprecated.py
-test_style_c: .FORCE
- # run our own checks on C/C++ style
- PYTHONIOENCODING=utf_8 $(PYTHON) \
- "$(BLENDER_DIR)/source/tools/check_source/check_style_c.py" \
- "$(BLENDER_DIR)/source/blender" \
- "$(BLENDER_DIR)/source/creator" \
- --no-length-check
-
-test_style_c_qtc: .FORCE
- # run our own checks on C/C++ style
- USE_QTC_TASK=1 \
- PYTHONIOENCODING=utf_8 $(PYTHON) \
- "$(BLENDER_DIR)/source/tools/check_source/check_style_c.py" \
- "$(BLENDER_DIR)/source/blender" \
- "$(BLENDER_DIR)/source/creator" \
- --no-length-check \
- > \
- "$(BLENDER_DIR)/test_style.tasks"
- @echo "written: test_style.tasks"
-
-
-test_style_osl: .FORCE
- # run our own checks on C/C++ style
- PYTHONIOENCODING=utf_8 $(PYTHON) \
- "$(BLENDER_DIR)/source/tools/check_source/check_style_c.py" \
- "$(BLENDER_DIR)/intern/cycles/kernel/shaders" \
- "$(BLENDER_DIR)/release/scripts/templates_osl"
-
-
-test_style_osl_qtc: .FORCE
- # run our own checks on C/C++ style
- USE_QTC_TASK=1 \
- PYTHONIOENCODING=utf_8 $(PYTHON) \
- "$(BLENDER_DIR)/source/tools/check_source/check_style_c.py" \
- "$(BLENDER_DIR)/intern/cycles/kernel/shaders" \
- "$(BLENDER_DIR)/release/scripts/templates_osl" \
- > \
- "$(BLENDER_DIR)/test_style.tasks"
- @echo "written: test_style.tasks"
# -----------------------------------------------------------------------------
# Project Files