Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
968a3d49
Commit
968a3d49
authored
8 years ago
by
Daniel Agar
Committed by
Lorenz Meier
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add make format (check_code_style_all.sh --fix)
parent
a260a6ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+7
-2
7 additions, 2 deletions
Makefile
Tools/check_code_style.sh
+8
-2
8 additions, 2 deletions
Tools/check_code_style.sh
Tools/check_code_style_all.sh
+8
-1
8 additions, 1 deletion
Tools/check_code_style_all.sh
with
23 additions
and
5 deletions
Makefile
+
7
−
2
View file @
968a3d49
...
...
@@ -233,8 +233,8 @@ run_sitl_ros: sitl_deprecation
# Other targets
# --------------------------------------------------------------------
.PHONY
:
gazebo_build uavcan_firmware check check_format unittest tests qgc_firmware package_firmware clean submodulesclean distclean
.NOTPARALLEL
:
gazebo_build uavcan_firmware check check_format unittest tests qgc_firmware package_firmware clean submodulesclean distclean
.PHONY
:
gazebo_build uavcan_firmware check check_format
format
unittest tests qgc_firmware package_firmware clean submodulesclean distclean
.NOTPARALLEL
:
gazebo_build uavcan_firmware check check_format
format
unittest tests qgc_firmware package_firmware clean submodulesclean distclean
gazebo_build
:
@
mkdir
-p
build_gazebo
...
...
@@ -283,6 +283,11 @@ check_format:
@
./Tools/fix_code_style.sh
@
./Tools/check_code_style_all.sh
format
:
$(
call colorecho,
"Formatting with astyle"
)
@
./Tools/fix_code_style.sh
@
./Tools/check_code_style_all.sh
--fix
check_%
:
@
echo
$(
call colorecho,
"Building"
$(
subst check_,,
$@
))
...
...
This diff is collapsed.
Click to expand it.
Tools/check_code_style.sh
+
8
−
2
View file @
968a3d49
...
...
@@ -16,8 +16,14 @@ then
echo
rm
-f
$file
.pretty
echo
$file
'bad formatting, please run "./Tools/fix_code_style.sh'
$file
'"'
exit
1
if
[[
$PX4_ASTYLE_FIX
-eq
1
]]
then
${
DIR
}
/fix_code_style.sh
$file
else
echo
$file
'bad formatting, please run "./Tools/fix_code_style.sh'
$file
'"'
exit
1
fi
fi
fi
This diff is collapsed.
Click to expand it.
Tools/check_code_style_all.sh
+
8
−
1
View file @
968a3d49
#!/usr/bin/env bash
set
-eu
failed
=
0
if
[[
"
$@
"
==
"--fix"
]]
then
export
PX4_ASTYLE_FIX
=
1
fi
DIR
=
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
find src/
\
-path
src/lib/DriverFramework
-prune
-o
\
-path
src/lib/ecl
-prune
-o
\
-path
src/lib/external_lgpl
-prune
-o
\
-path
src/lib/mathlib
-prune
-o
\
-path
src/lib/matrix
-prune
-o
\
-path
src/modules/attitude_estimator_ekf
-prune
-o
\
-path
src/modules/commander
-prune
-o
\
-path
src/modules/ekf2
-prune
-o
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment