Skip to content

Commit c88b1c2

Browse files
committed
Remove local files
1 parent fd9df2b commit c88b1c2

File tree

4 files changed

+6
-25
lines changed

4 files changed

+6
-25
lines changed

.vscode/settings.json

Lines changed: 0 additions & 19 deletions
This file was deleted.

cpp/autosar/test/rules/A2-3-1/test.cpp.gcc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// It is valid to use @ in comments COMPLIANT
22

33
// Invalid character α NON_COMPLIANT
4-
// double a = 2.; // NON_COMPLIANT; U+03b1 - this is compiler checked
5-
// void *to_8_and_beyond = nullptr; // NON_COMPLIANT; U+10185 - this is compiler checked
4+
// U+03b1 - this is compiler checked
5+
// U+10185 - this is compiler checked
66
int l1_\u00A8; // COMPLIANT[FALSE_POSITIVE]
77
const char *euro = "α"; // NON_COMPLIANT
88

cpp/autosar/test/rules/A2-3-1/test.cpp.qcc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// It is valid to use @ in comments COMPLIANT
22

33
// Invalid character α NON_COMPLIANT
4-
// double a = 2.; // NON_COMPLIANT; U+03b1 - this is compiler checked
5-
// void *to_8_and_beyond = nullptr; // NON_COMPLIANT; U+10185 - this is compiler checked
4+
// U+03b1 - this is compiler checked
5+
// U+10185 - this is compiler checked
66
int l1_\u00A8; // COMPLIANT[FALSE_POSITIVE]
77
const char *euro = "α"; // NON_COMPLIANT
88

scripts/build_test_database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
exit(1)
4848

4949
# get the codeql version
50-
res = subprocess.run(['/Users/mauro/GitHub/coding-standards/codeql-bundle-20220908/codeql', 'version', '--format', 'json'], stdout=subprocess.PIPE)
50+
res = subprocess.run(['codeql', 'version', '--format', 'json'], stdout=subprocess.PIPE)
5151
res_json = json.loads(res.stdout)
5252
CODEQL_VERSION=res_json["version"]
5353

@@ -67,4 +67,4 @@
6767
while os.path.exists(f"databases/{RULE}+{ITERATION}@{CODEQL_VERSION}"):
6868
ITERATION = ITERATION + 1
6969

70-
os.system(f"/Users/mauro/GitHub/coding-standards/codeql-bundle-20220908/codeql database create -l cpp -s {LANGUAGE}/{STANDARD}/test/rules/{RULE} --command=\"{BUILD_COMMAND}\" databases/{RULE}+{ITERATION}@{CODEQL_VERSION}")
70+
os.system(f"codeql database create -l cpp -s {LANGUAGE}/{STANDARD}/test/rules/{RULE} --command=\"{BUILD_COMMAND}\" databases/{RULE}+{ITERATION}@{CODEQL_VERSION}")

0 commit comments

Comments
 (0)