Changeset 6e4758


Ignore:
Timestamp:
06/19/12 16:51:35 (12 months ago)
Author:
Micke Prag <micke.prag@…>
Branches:
('master', '668dd99ac278cfd419d67879b141678facea630a')
Children:
ae7b9b8c1a6abbaacb0643cb53cd1e3435594849
Parents:
ffebd4ed4c7fbf3eef10fbdb86deb87b19db888f
git-author:
Micke Prag <micke.prag@telldus.se>2012-06-19 16:51:35+02:00
git-committer:
Micke Prag <micke.prag@telldus.se>2012-06-19 16:51:35+02:00
Message:

Add comment on why we disable some of the default tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • telldus-core/tests/CMakeLists.txt

    rffebd4e r6e4758  
    11SET(ENABLE_TESTING      FALSE   CACHE BOOL "Enable unit tests") 
    22 
     3#We have disabled some of the default tests in the google style guidelines 
     4# whitespace/tab 
     5#  We are using tabs for indentation, not spaces, in our code 
     6# 
     7# whitespace/parens 
     8#  We believe grouping of parameters with spaces in some functions could ease the readability 
     9# 
     10# whitespace/line_length 
     11#  Although you should try to keep the lines short it should not be a requirement (at least for now) 
     12# 
     13# whitespace/labels 
     14#  Since we use tabs instead of spaces for indentation, this test makes no sense 
     15# 
     16# runtime/rtti 
     17#  We are using dynamic_cast for the events. We use this to be able to send arbitrary data 
     18#  trought the events. 
     19# 
    320SET(cpplint_filters 
    421        +whitespace/use_tab_for_indentation,-whitespace/tab,-whitespace/parens,-whitespace/line_length,-whitespace/labels,-runtime/rtti 
Note: See TracChangeset for help on using the changeset viewer.