-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #807 from Bertk/enh_checks
Enhance checks
- Loading branch information
Showing
10 changed files
with
194 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex1.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// bad copyright | ||
|
||
public class Regex1 { | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex2.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// copyright 2005 | ||
// mycompan | ||
|
||
public class Regex2 { | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex3.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// copyright 2005 | ||
// mycompany | ||
|
||
public class Regex3 { | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex4.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// prefix | ||
// copyright 2005 | ||
// mycompany | ||
|
||
public class Regex4 { | ||
|
||
} |
8 changes: 8 additions & 0 deletions
8
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex5.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// prefix | ||
// Copyright (c) Vendor AG 2015-2016 | ||
// All Rights Reserved. | ||
|
||
public class Regex5 { | ||
|
||
} | ||
|
8 changes: 8 additions & 0 deletions
8
cxx-checks/src/test/resources/checks/FileHeaderCheck/Regex6.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// prefix | ||
// Copyright (c) AG 2015-2016 | ||
// All Rights Reserved. | ||
|
||
public class Regex5 { | ||
|
||
} | ||
|