-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrepos.json
More file actions
37 lines (37 loc) · 1.11 KB
/
repos.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"description": "Repositories for extended MCP integration testing with CallGraphFromTo source/target function pairs.",
"repositories": [
{
"owner": "gin-gonic",
"repo": "gin",
"language": "go",
"callGraphFromTo": { "sourceFunction": "handleHTTPRequest", "targetFunction": "ServeHTTP" }
},
{
"owner": "expressjs",
"repo": "express",
"language": "javascript",
"callGraphFromTo": { "sourceFunction": "json", "targetFunction": "send" }
},
{
"owner": "checkstyle",
"repo": "checkstyle",
"language": "java",
"callGraphFromTo": { "sourceFunction": "process", "targetFunction": "log" }
},
{
"owner": "PyCQA",
"repo": "flake8",
"language": "python",
"callGraphFromTo": { "sourceFunction": "run", "targetFunction": "report" }
}
],
"settings": {
"databaseDir": ".tmp/extended-test-databases",
"fixtureSearchDirs": [
"test/fixtures/single-folder-workspace/codeql-storage/databases",
"test/fixtures/multi-root-workspace/folder-a/codeql-storage/databases"
],
"timeoutMs": 600000
}
}