File tree Expand file tree Collapse file tree 4 files changed +3
-176
lines changed
rust/ql/integration-tests Expand file tree Collapse file tree 4 files changed +3
-176
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ def rust_check_diagnostics(check_diagnostics):
19
19
check_diagnostics .replacements += [
20
20
(r'"ms"\s*:\s*[0-9]+' , '"ms": "REDACTED"' ),
21
21
(r'"pretty"\s*:\s*"[0-9]+:[0-9]{2}:[0-9]{2}.[0-9]{3}"' , '"pretty": "REDACTED"' ),
22
- (r'Cargo.toml|rust-project.json' , "<manifest>" ),
23
- (r'"//\?/' , '"' ), # remove windows `//?/` long path syntax
22
+ ]
23
+ check_diagnostics .skip += [
24
+ "attributes.steps" , # the order of the steps is not stable
24
25
]
25
26
return check_diagnostics
Original file line number Diff line number Diff line change 1
1
{
2
2
"attributes": {
3
- "steps": [
4
- {
5
- "loadManifest": "<test-root-directory>/<manifest>",
6
- "ms": "REDACTED"
7
- },
8
- {
9
- "fetchFile": "<test-root-directory>/src/directory_module/mod.rs",
10
- "ms": "REDACTED"
11
- },
12
- {
13
- "ms": "REDACTED",
14
- "parse": "<test-root-directory>/src/directory_module/mod.rs"
15
- },
16
- {
17
- "extract": "<test-root-directory>/src/directory_module/mod.rs",
18
- "ms": "REDACTED"
19
- },
20
- {
21
- "fetchFile": "<test-root-directory>/src/directory_module/nested_module.rs",
22
- "ms": "REDACTED"
23
- },
24
- {
25
- "ms": "REDACTED",
26
- "parse": "<test-root-directory>/src/directory_module/nested_module.rs"
27
- },
28
- {
29
- "extract": "<test-root-directory>/src/directory_module/nested_module.rs",
30
- "ms": "REDACTED"
31
- },
32
- {
33
- "ms": "REDACTED",
34
- "parse": "<test-root-directory>/src/directory_module/not_loaded.rs"
35
- },
36
- {
37
- "extract": "<test-root-directory>/src/directory_module/not_loaded.rs",
38
- "ms": "REDACTED"
39
- },
40
- {
41
- "fetchFile": "<test-root-directory>/src/file_module.rs",
42
- "ms": "REDACTED"
43
- },
44
- {
45
- "ms": "REDACTED",
46
- "parse": "<test-root-directory>/src/file_module.rs"
47
- },
48
- {
49
- "extract": "<test-root-directory>/src/file_module.rs",
50
- "ms": "REDACTED"
51
- },
52
- {
53
- "fetchFile": "<test-root-directory>/src/main.rs",
54
- "ms": "REDACTED"
55
- },
56
- {
57
- "ms": "REDACTED",
58
- "parse": "<test-root-directory>/src/main.rs"
59
- },
60
- {
61
- "extract": "<test-root-directory>/src/main.rs",
62
- "ms": "REDACTED"
63
- }
64
- ],
65
3
"summary": {
66
4
"numberOfFiles": 4,
67
5
"numberOfManifests": 1,
Original file line number Diff line number Diff line change 1
1
{
2
2
"attributes": {
3
- "steps": [
4
- {
5
- "loadManifest": "<test-root-directory>/lib/<manifest>",
6
- "ms": "REDACTED"
7
- },
8
- {
9
- "fetchFile": "<test-root-directory>/lib/src/a_module/mod.rs",
10
- "ms": "REDACTED"
11
- },
12
- {
13
- "ms": "REDACTED",
14
- "parse": "<test-root-directory>/lib/src/a_module/mod.rs"
15
- },
16
- {
17
- "extract": "<test-root-directory>/lib/src/a_module/mod.rs",
18
- "ms": "REDACTED"
19
- },
20
- {
21
- "fetchFile": "<test-root-directory>/lib/src/lib.rs",
22
- "ms": "REDACTED"
23
- },
24
- {
25
- "ms": "REDACTED",
26
- "parse": "<test-root-directory>/lib/src/lib.rs"
27
- },
28
- {
29
- "extract": "<test-root-directory>/lib/src/lib.rs",
30
- "ms": "REDACTED"
31
- },
32
- {
33
- "loadManifest": "<test-root-directory>/exe/<manifest>",
34
- "ms": "REDACTED"
35
- },
36
- {
37
- "fetchFile": "<test-root-directory>/exe/src/a_module.rs",
38
- "ms": "REDACTED"
39
- },
40
- {
41
- "ms": "REDACTED",
42
- "parse": "<test-root-directory>/exe/src/a_module.rs"
43
- },
44
- {
45
- "extract": "<test-root-directory>/exe/src/a_module.rs",
46
- "ms": "REDACTED"
47
- },
48
- {
49
- "fetchFile": "<test-root-directory>/exe/src/main.rs",
50
- "ms": "REDACTED"
51
- },
52
- {
53
- "ms": "REDACTED",
54
- "parse": "<test-root-directory>/exe/src/main.rs"
55
- },
56
- {
57
- "extract": "<test-root-directory>/exe/src/main.rs",
58
- "ms": "REDACTED"
59
- }
60
- ],
61
3
"summary": {
62
4
"numberOfFiles": 4,
63
5
"numberOfManifests": 2,
Original file line number Diff line number Diff line change 1
1
{
2
2
"attributes": {
3
- "steps": [
4
- {
5
- "loadManifest": "<test-root-directory>/<manifest>",
6
- "ms": "REDACTED"
7
- },
8
- {
9
- "fetchFile": "<test-root-directory>/exe/src/a_module.rs",
10
- "ms": "REDACTED"
11
- },
12
- {
13
- "ms": "REDACTED",
14
- "parse": "<test-root-directory>/exe/src/a_module.rs"
15
- },
16
- {
17
- "extract": "<test-root-directory>/exe/src/a_module.rs",
18
- "ms": "REDACTED"
19
- },
20
- {
21
- "fetchFile": "<test-root-directory>/exe/src/main.rs",
22
- "ms": "REDACTED"
23
- },
24
- {
25
- "ms": "REDACTED",
26
- "parse": "<test-root-directory>/exe/src/main.rs"
27
- },
28
- {
29
- "extract": "<test-root-directory>/exe/src/main.rs",
30
- "ms": "REDACTED"
31
- },
32
- {
33
- "fetchFile": "<test-root-directory>/lib/src/a_module/mod.rs",
34
- "ms": "REDACTED"
35
- },
36
- {
37
- "ms": "REDACTED",
38
- "parse": "<test-root-directory>/lib/src/a_module/mod.rs"
39
- },
40
- {
41
- "extract": "<test-root-directory>/lib/src/a_module/mod.rs",
42
- "ms": "REDACTED"
43
- },
44
- {
45
- "fetchFile": "<test-root-directory>/lib/src/lib.rs",
46
- "ms": "REDACTED"
47
- },
48
- {
49
- "ms": "REDACTED",
50
- "parse": "<test-root-directory>/lib/src/lib.rs"
51
- },
52
- {
53
- "extract": "<test-root-directory>/lib/src/lib.rs",
54
- "ms": "REDACTED"
55
- }
56
- ],
57
3
"summary": {
58
4
"numberOfFiles": 4,
59
5
"numberOfManifests": 1,
You can’t perform that action at this time.
0 commit comments