fm-weck 1.5.2__py3-none-any.whl → 1.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. fm_weck/__init__.py +1 -1
  2. fm_weck/capture.py +1 -1
  3. fm_weck/cli.py +113 -4
  4. fm_weck/config.py +3 -6
  5. fm_weck/engine.py +31 -4
  6. fm_weck/exceptions.py +4 -0
  7. fm_weck/image_mgr.py +66 -0
  8. fm_weck/resources/__init__.py +4 -4
  9. fm_weck/resources/fm_tools/2ls.yml +22 -0
  10. fm_weck/resources/fm_tools/afltc.yml +59 -0
  11. fm_weck/resources/fm_tools/aise.yml +28 -1
  12. fm_weck/resources/fm_tools/aprove.yml +25 -0
  13. fm_weck/resources/fm_tools/brick.yml +25 -1
  14. fm_weck/resources/fm_tools/bubaak-split.yml +18 -0
  15. fm_weck/resources/fm_tools/bubaak.yml +10 -0
  16. fm_weck/resources/fm_tools/cbmc.yml +12 -0
  17. fm_weck/resources/fm_tools/cetfuzz.yml +21 -6
  18. fm_weck/resources/fm_tools/coastal.yml +12 -0
  19. fm_weck/resources/fm_tools/concurrentwitness2test.yml +25 -2
  20. fm_weck/resources/fm_tools/cooperace.yml +39 -0
  21. fm_weck/resources/fm_tools/coveritest.yml +22 -0
  22. fm_weck/resources/fm_tools/cpa-bam-bnb.yml +16 -1
  23. fm_weck/resources/fm_tools/cpa-bam-smg.yml +17 -1
  24. fm_weck/resources/fm_tools/cpa-lockator.yml +17 -1
  25. fm_weck/resources/fm_tools/cpa-witness2test.yml +13 -3
  26. fm_weck/resources/fm_tools/cpachecker.yml +150 -10
  27. fm_weck/resources/fm_tools/cpv.yml +48 -0
  28. fm_weck/resources/fm_tools/crux.yml +12 -0
  29. fm_weck/resources/fm_tools/cseq.yml +36 -9
  30. fm_weck/resources/fm_tools/dartagnan.yml +63 -3
  31. fm_weck/resources/fm_tools/dasa.yml +70 -0
  32. fm_weck/resources/fm_tools/deagle.yml +19 -1
  33. fm_weck/resources/fm_tools/divine.yml +13 -0
  34. fm_weck/resources/fm_tools/ebf.yml +17 -2
  35. fm_weck/resources/fm_tools/emergentheta.yml +51 -5
  36. fm_weck/resources/fm_tools/esbmc-incr.yml +59 -2
  37. fm_weck/resources/fm_tools/esbmc-kind.yml +59 -2
  38. fm_weck/resources/fm_tools/fdse.yml +31 -0
  39. fm_weck/resources/fm_tools/fizzer.yml +32 -3
  40. fm_weck/resources/fm_tools/frama-c-sv.yml +21 -2
  41. fm_weck/resources/fm_tools/fshell-witness2test.yml +13 -3
  42. fm_weck/resources/fm_tools/function-res.yml +64 -0
  43. fm_weck/resources/fm_tools/fusebmc-ia.yml +20 -6
  44. fm_weck/resources/fm_tools/fusebmc.yml +25 -4
  45. fm_weck/resources/fm_tools/gazer-theta.yml +16 -3
  46. fm_weck/resources/fm_tools/gdart-llvm.yml +16 -1
  47. fm_weck/resources/fm_tools/gdart.yml +49 -2
  48. fm_weck/resources/fm_tools/goblint-par.yml +66 -0
  49. fm_weck/resources/fm_tools/goblint.yml +239 -12
  50. fm_weck/resources/fm_tools/goblitch.yml +77 -0
  51. fm_weck/resources/fm_tools/graves-par.yml +4 -1
  52. fm_weck/resources/fm_tools/graves.yml +20 -5
  53. fm_weck/resources/fm_tools/gwit.yml +13 -3
  54. fm_weck/resources/fm_tools/hornix.yml +26 -4
  55. fm_weck/resources/fm_tools/hybridtiger.yml +12 -1
  56. fm_weck/resources/fm_tools/iekke.yml +73 -0
  57. fm_weck/resources/fm_tools/infer.yml +12 -0
  58. fm_weck/resources/fm_tools/java-ranger.yml +18 -0
  59. fm_weck/resources/fm_tools/jayhorn.yml +50 -4
  60. fm_weck/resources/fm_tools/jbmc.yml +17 -1
  61. fm_weck/resources/fm_tools/jcwit.yml +12 -2
  62. fm_weck/resources/fm_tools/jdart.yml +16 -1
  63. fm_weck/resources/fm_tools/jlisa.yml +105 -0
  64. fm_weck/resources/fm_tools/klee.yml +12 -1
  65. fm_weck/resources/fm_tools/kleef.yml +18 -0
  66. fm_weck/resources/fm_tools/korn.yml +23 -1
  67. fm_weck/resources/fm_tools/lazycseq.yml +16 -1
  68. fm_weck/resources/fm_tools/legion-symcc.yml +5 -1
  69. fm_weck/resources/fm_tools/legion.yml +7 -4
  70. fm_weck/resources/fm_tools/lf-checker.yml +16 -1
  71. fm_weck/resources/fm_tools/liv.yml +48 -3
  72. fm_weck/resources/fm_tools/locksmith.yml +16 -1
  73. fm_weck/resources/fm_tools/metaval++.yml +1 -1
  74. fm_weck/resources/fm_tools/metaval.yml +121 -6
  75. fm_weck/resources/fm_tools/mlb.yml +23 -1
  76. fm_weck/resources/fm_tools/mopsa.yml +100 -7
  77. fm_weck/resources/fm_tools/muval.yml +120 -0
  78. fm_weck/resources/fm_tools/nacpa.yml +57 -2
  79. fm_weck/resources/fm_tools/nitwit.yml +13 -3
  80. fm_weck/resources/fm_tools/ogchecker.yml +47 -0
  81. fm_weck/resources/fm_tools/owic.yml +16 -2
  82. fm_weck/resources/fm_tools/pesco.yml +19 -1
  83. fm_weck/resources/fm_tools/pichecker.yml +16 -1
  84. fm_weck/resources/fm_tools/pinaka.yml +14 -1
  85. fm_weck/resources/fm_tools/predatorhp.yml +12 -0
  86. fm_weck/resources/fm_tools/proton.yml +26 -1
  87. fm_weck/resources/fm_tools/prtest.yml +23 -0
  88. fm_weck/resources/fm_tools/pysvlib-linter.yml +77 -0
  89. fm_weck/resources/fm_tools/pysvlib-validator.yml +76 -0
  90. fm_weck/resources/fm_tools/racerf.yml +27 -4
  91. fm_weck/resources/fm_tools/re3ver.yml +78 -0
  92. fm_weck/resources/fm_tools/rizzer.yml +11 -1
  93. fm_weck/resources/fm_tools/schema.yml +185 -4
  94. fm_weck/resources/fm_tools/seal.yml +67 -0
  95. fm_weck/resources/fm_tools/sikraken.yml +25 -1
  96. fm_weck/resources/fm_tools/spf.yml +14 -1
  97. fm_weck/resources/fm_tools/sv-sanitizers.yml +46 -3
  98. fm_weck/resources/fm_tools/svf-svc.yml +33 -1
  99. fm_weck/resources/fm_tools/svlibchecker.yml +82 -0
  100. fm_weck/resources/fm_tools/swat.yml +30 -0
  101. fm_weck/resources/fm_tools/symbiotic-witch.yml +31 -6
  102. fm_weck/resources/fm_tools/symbiotic.yml +64 -1
  103. fm_weck/resources/fm_tools/testcoca.yml +53 -0
  104. fm_weck/resources/fm_tools/testcov.yml +97 -0
  105. fm_weck/resources/fm_tools/theta.yml +100 -2
  106. fm_weck/resources/fm_tools/thorn.yml +22 -1
  107. fm_weck/resources/fm_tools/tracerx-wp.yml +18 -0
  108. fm_weck/resources/fm_tools/tracerx.yml +22 -0
  109. fm_weck/resources/fm_tools/uautomizer.yml +186 -19
  110. fm_weck/resources/fm_tools/ugemcutter.yml +97 -9
  111. fm_weck/resources/fm_tools/ukojak.yml +55 -9
  112. fm_weck/resources/fm_tools/uparalizer.yml +78 -0
  113. fm_weck/resources/fm_tools/ureferee.yml +83 -13
  114. fm_weck/resources/fm_tools/utaipan.yml +61 -9
  115. fm_weck/resources/fm_tools/utestgen.yml +36 -0
  116. fm_weck/resources/fm_tools/veriabs.yml +12 -0
  117. fm_weck/resources/fm_tools/veriabsl.yml +16 -0
  118. fm_weck/resources/fm_tools/verioover.yml +16 -1
  119. fm_weck/resources/fm_tools/wasp-c.yml +16 -1
  120. fm_weck/resources/fm_tools/wit4java.yml +36 -4
  121. fm_weck/resources/fm_tools/witch.yml +29 -4
  122. fm_weck/resources/fm_tools/witnesslint.yml +111 -8
  123. fm_weck/resources/fm_tools/witnessmap.yml +29 -1
  124. fm_weck/run_result.py +15 -11
  125. fm_weck/runexec_mode.py +37 -7
  126. fm_weck/smoke_test_mode.py +6 -10
  127. fm_weck/zenodo.py +381 -0
  128. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/METADATA +2 -1
  129. fm_weck-1.6.0.dist-info/RECORD +188 -0
  130. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/WHEEL +1 -1
  131. fm_weck-1.5.2.dist-info/RECORD +0 -171
  132. {fm_weck-1.5.2.dist-info → fm_weck-1.6.0.dist-info}/entry_points.txt +0 -0
@@ -1,5 +1,8 @@
1
1
  id: sikraken
2
2
  name: Sikraken
3
+ description: |
4
+ Sikraken is a test data generator for C code that uses Prolog for symbolic execution at source code
5
+ level and Constraints Logic Programming for constraints resolution.
3
6
  input_languages:
4
7
  - C
5
8
  project_url: https://github.com/echancrure/Sikraken
@@ -17,14 +20,35 @@ maintainers:
17
20
  country: Ireland
18
21
  url: https://www.setu.ie/staff/chris-meudec
19
22
 
20
-
21
23
  versions:
24
+ - version: "1.3.4"
25
+ benchexec_toolinfo_options: ["--testcomp"]
26
+ required_ubuntu_packages:
27
+ - gcc
28
+ doi: "10.5281/zenodo.18062402"
29
+ base_container_images:
30
+ - docker.io/ubuntu:24.04
31
+ full_container_images:
32
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
33
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
22
34
  - version: "1.0.8"
23
35
  benchexec_toolinfo_options: ["release", "budget[900]"]
24
36
  required_ubuntu_packages: []
25
37
  doi: "10.5281/zenodo.14343769"
26
38
 
27
39
  competition_participations:
40
+ - competition: "Test-Comp 2026"
41
+ track: "Test Generation"
42
+ tool_version: "1.3.4"
43
+ jury_member:
44
+ orcid: 0000-0001-6338-6367
45
+ name: Christophe Meudec
46
+ institution: South East Technological University
47
+ country: Ireland
48
+ url: https://www.setu.ie/staff/chris-meudec
49
+ participants:
50
+ - orcid: 0000-0001-6338-6367
51
+ name: Christophe Meudec
28
52
  - competition: "Test-Comp 2025"
29
53
  track: "Test Generation"
30
54
  tool_version: "1.0.8"
@@ -11,7 +11,8 @@ fmtools_entry_maintainers:
11
11
  - yannicnoller
12
12
 
13
13
  maintainers:
14
- - name: Yannic Noller
14
+ - orcid: 0000-0000-0000-0000
15
+ name: Yannic Noller
15
16
  institution: National University of Singapore
16
17
  country: Singapore
17
18
  url:
@@ -20,11 +21,23 @@ versions:
20
21
  - version: "svcomp23"
21
22
  doi: 10.5281/zenodo.10407521
22
23
  benchexec_toolinfo_options: []
24
+ base_container_images:
25
+ - docker.io/ubuntu:22.04
23
26
  required_ubuntu_packages: []
24
27
  full_container_images:
25
28
  - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2023
26
29
 
27
30
  competition_participations:
31
+ - competition: "SV-COMP 2026"
32
+ track: "Verification"
33
+ label:
34
+ - inactive
35
+ tool_version: "svcomp23"
36
+ jury_member:
37
+ name: Hors Concours
38
+ institution: --
39
+ country: --
40
+ url:
28
41
  - competition: "SV-COMP 2025"
29
42
  track: "Verification"
30
43
  label:
@@ -7,7 +7,7 @@ input_languages:
7
7
  project_url: https://github.com/sim642/sv-sanitizers
8
8
  repository_url: https://github.com/sim642/sv-sanitizers
9
9
  spdx_license_identifier: MIT
10
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/sv-sanitizers.py"
10
+ benchexec_toolinfo_module: benchexec.tools.sv-sanitizers
11
11
  fmtools_format_version: "2.0"
12
12
  fmtools_entry_maintainers:
13
13
  - sim642
@@ -20,16 +20,53 @@ maintainers:
20
20
  url: https://sim642.eu/
21
21
 
22
22
  versions:
23
+ - version: "svcomp26"
24
+ doi: 10.5281/zenodo.17400380
25
+ benchexec_toolinfo_options: []
26
+ required_ubuntu_packages:
27
+ - python3
28
+ - gcc
29
+ - libc6-dev-i386
30
+ base_container_images:
31
+ - docker.io/ubuntu:24.04
32
+ full_container_images:
33
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
23
34
  - version: "svcomp25"
24
35
  doi: 10.5281/zenodo.14172703
25
36
  benchexec_toolinfo_options: []
26
- required_ubuntu_packages: []
37
+ required_ubuntu_packages:
38
+ - python3
39
+ - gcc
40
+ - libc6-dev-i386
41
+ base_container_images:
42
+ - docker.io/ubuntu:24.04
43
+ full_container_images:
44
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
27
45
  - version: "svcomp24"
28
46
  doi: 10.5281/zenodo.10091272
29
47
  benchexec_toolinfo_options: []
30
- required_ubuntu_packages: []
48
+ required_ubuntu_packages:
49
+ - python3
50
+ - gcc
51
+ - libc6-dev-i386
52
+ base_container_images:
53
+ - docker.io/ubuntu:22.04
54
+ full_container_images:
55
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
31
56
 
32
57
  competition_participations:
58
+ - competition: "SV-COMP 2026"
59
+ track: "Verification"
60
+ tool_version: "svcomp26"
61
+ jury_member:
62
+ orcid: 0000-0003-4553-1350
63
+ name: Simmo Saan
64
+ institution: University of Tartu
65
+ country: Estonia
66
+ url: https://sim642.eu/
67
+ participants:
68
+ - orcid: 0000-0003-4553-1350
69
+ name: Simmo Saan
33
70
  - competition: "SV-COMP 2025"
34
71
  track: "Verification"
35
72
  tool_version: "svcomp25"
@@ -39,6 +76,9 @@ competition_participations:
39
76
  institution: University of Tartu
40
77
  country: Estonia
41
78
  url: https://sim642.eu/
79
+ participants:
80
+ - orcid: 0000-0003-4553-1350
81
+ name: Simmo Saan
42
82
  - competition: "SV-COMP 2024"
43
83
  track: "Verification"
44
84
  tool_version: "svcomp24"
@@ -48,6 +88,9 @@ competition_participations:
48
88
  institution: University of Tartu
49
89
  country: Estonia
50
90
  url: https://sim642.eu/
91
+ participants:
92
+ - orcid: 0000-0003-4553-1350
93
+ name: Simmo Saan
51
94
 
52
95
  techniques:
53
96
  - Concurrency Support
@@ -10,7 +10,7 @@ input_languages:
10
10
  project_url: https://github.com/Lasagnenator/svf-svc-comp/
11
11
  repository_url: https://github.com/Lasagnenator/svf-svc-comp/
12
12
  spdx_license_identifier: AGPL-3.0-or-later
13
- benchexec_toolinfo_module: "https://gitlab.com/sosy-lab/software/benchexec/-/raw/main/benchexec/tools/svf-svc.py"
13
+ benchexec_toolinfo_module: benchexec.tools.svf-svc
14
14
  fmtools_format_version: "2.0"
15
15
  fmtools_entry_maintainers:
16
16
  - ConstantlyRecompiling
@@ -26,14 +26,46 @@ maintainers:
26
26
  institution: University of New South Wales
27
27
  country: Australia
28
28
  url:
29
+ - orcid: 0000-0000-0000-0000
30
+ name: Jiawei Wang
31
+ institution: University of New South Wales
32
+ country: Australia
33
+ url:
34
+ - orcid: 0000-0000-0000-0000
35
+ name: Terence Zhao
36
+ institution: University of New South Wales
37
+ country: Australia
38
+ url:
39
+ - orcid: 0000-0000-0000-0000
40
+ name: Angela He
41
+ institution: University of New South Wales
42
+ country: Australia
43
+ url:
44
+ - orcid: 0000-0000-0000-0000
45
+ name: Haoyang Qu
46
+ institution: University of New South Wales
47
+ country: Australia
48
+ url:
29
49
 
30
50
  versions:
51
+ - version: "svcomp26"
52
+ doi: 10.5281/zenodo.17660355
53
+ benchexec_toolinfo_options: ["--witness", "witness.graphml"]
54
+ required_ubuntu_packages: ["python3-yaml", "libxml2", "clang-14", "clang"]
31
55
  - version: "svcomp25"
32
56
  doi: 10.5281/zenodo.14208597
33
57
  benchexec_toolinfo_options: ["--witness", "witness.graphml"]
34
58
  required_ubuntu_packages: ["python3-yaml"]
35
59
 
36
60
  competition_participations:
61
+ - competition: "SV-COMP 2026"
62
+ track: "Verification"
63
+ tool_version: "svcomp26"
64
+ jury_member:
65
+ name: Matthew Richards
66
+ institution: University of New South Wales
67
+ country: Australia
68
+ url:
37
69
  - competition: "SV-COMP 2025"
38
70
  track: "Verification"
39
71
  tool_version: "svcomp25"
@@ -0,0 +1,82 @@
1
+ id: svlibchecker
2
+ name: SvLibChecker
3
+ description: |
4
+ SvLibChecker is an extensible and educational
5
+ framework for implementing SV-LIB verifiers.
6
+ The goal is to make it easy to develop new verification
7
+ techniques for SV-LIB files and to provide
8
+ an easy entry point for students and researchers
9
+ interested in model checking.
10
+ input_languages:
11
+ - SV-LIB
12
+ project_url: https://gitlab.com/sosy-lab/software/svlibchecker
13
+ repository_url: https://gitlab.com/sosy-lab/software/svlibchecker
14
+ spdx_license_identifier: Apache-2.0
15
+ benchexec_toolinfo_module: benchexec.tools.svlibchecker
16
+ fmtools_format_version: "2.0"
17
+ fmtools_entry_maintainers:
18
+ - dbeyer
19
+ - Marianl
20
+
21
+ maintainers:
22
+ - orcid: 0000-0003-4832-7662
23
+ name: Dirk Beyer
24
+ institution: LMU Munich
25
+ country: Germany
26
+ url: https://www.sosy-lab.org/people/dbeyer/
27
+ - name: Marian Lingsch-Rosenfeld
28
+ orcid: 0000-0002-8172-3184
29
+ institution: LMU Munich
30
+ country: Germany
31
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
32
+
33
+ versions:
34
+ - version: "0.0.0-dev-3784b423"
35
+ doi: 10.5281/zenodo.18436449
36
+ benchexec_toolinfo_options: ["--config", "predicateAnalysisCegar"]
37
+ base_container_images:
38
+ - docker.io/ubuntu:24.04
39
+ required_ubuntu_packages: []
40
+ full_container_images:
41
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
42
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
43
+
44
+ competition_participations:
45
+ - competition: "SV-COMP 2026"
46
+ track: "Verification"
47
+ tool_version: "0.0.0-dev-3784b423"
48
+ jury_member:
49
+ orcid: 0000-0002-8172-3184
50
+ name: Marian Lingsch-Rosenfeld
51
+ institution: LMU Munich
52
+ country: Germany
53
+ url: https://www.sosy-lab.org/people/lingsch-rosenfeld/
54
+ participants:
55
+ - orcid: 0000-0003-4832-7662
56
+ name: Dirk Beyer
57
+ - orcid: 0000-0002-8172-3184
58
+ name: Marian Lingsch-Rosenfeld
59
+
60
+ techniques:
61
+ - CEGAR
62
+ - Predicate Abstraction
63
+ - Symbolic Execution
64
+ - Bounded Model Checking
65
+ - k-Induction
66
+ - Explicit-Value Analysis
67
+ - ARG-Based Analysis
68
+ - Lazy Abstraction
69
+ - Interpolation
70
+ - Automata-Based Analysis
71
+
72
+ frameworks_solvers:
73
+ - PySMT
74
+ - MathSAT
75
+ - Z3
76
+
77
+ used_actors: []
78
+
79
+ literature:
80
+ - doi: 10.48550/arXiv.2511.21509
81
+ title: "SV-LIB 1.0: A Standard Exchange Format for Software-Verification Tasks"
82
+ year: 2025
@@ -1,5 +1,10 @@
1
1
  id: swat
2
2
  name: SWAT
3
+ description: |
4
+ SWAT (Symbolic Web Application Testing) is an advanced tool for analyzing Java web applications for security vulnerabilities and errors, based on concolic execution.
5
+ It employs dynamic symbolic execution to precisely identify weaknesses.
6
+ The modular system utilizes JavaSMT for formula creation and strategically coordinates tests with Z3 as the symbolic solver.
7
+ Ideal for developers who want to test their web applications securely and efficiently.
3
8
  input_languages:
4
9
  - Java
5
10
  project_url: https://www.its.uni-luebeck.de/en/research/tools/swat/
@@ -34,8 +39,33 @@ versions:
34
39
  benchexec_toolinfo_options: []
35
40
  required_ubuntu_packages:
36
41
  - openjdk-17-jdk-headless
42
+ - version: "svcomp26"
43
+ doi: 10.5281/zenodo.17748741
44
+ benchexec_toolinfo_options: []
45
+ required_ubuntu_packages:
46
+ - openjdk-17-jdk-headless
37
47
 
48
+ base_container_images:
49
+ - docker.io/ubuntu:24.04
38
50
  competition_participations:
51
+ - competition: "SV-COMP 2026"
52
+ track: "Verification"
53
+ tool_version: "svcomp26"
54
+ jury_member:
55
+ orcid: 0009-0003-6243-1623
56
+ name: Nils Loose
57
+ institution: University of Luebeck
58
+ country: Germany
59
+ url: https://bio.nils-loose.com
60
+ participants:
61
+ - orcid: 0009-0003-6243-1623
62
+ name: Nils Loose
63
+ - orcid: 0000-0002-1501-0936
64
+ name: Florian Sieck
65
+ - orcid: 0009-0009-2431-0322
66
+ name: Felix Maechtle
67
+ - orcid: 0000-0003-1116-6973
68
+ name: Thomas Eisenbarth
39
69
  - competition: "SV-COMP 2025"
40
70
  track: "Verification"
41
71
  tool_version: "svcomp25"
@@ -22,29 +22,54 @@ maintainers:
22
22
  url:
23
23
 
24
24
  versions:
25
- - version: "svcomp25"
25
+ - version: "svcomp26"
26
+ doi: "10.5281/zenodo.18462288"
26
27
  benchexec_toolinfo_options: ["--witness-check", "${witness}"]
28
+ base_container_images:
29
+ - docker.io/ubuntu:22.04
27
30
  required_ubuntu_packages:
28
31
  - python3
29
32
  - python3-lxml
30
33
  - llvm-14
34
+ full_container_images:
35
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2025
36
+ - version: "svcomp25"
31
37
  doi: "10.5281/zenodo.14207464"
38
+ benchexec_toolinfo_options: ["--witness-check", "${witness}"]
39
+ base_container_images:
40
+ - docker.io/ubuntu:22.04
41
+ required_ubuntu_packages:
42
+ - python3
43
+ - python3-lxml
44
+ - llvm-14
45
+ full_container_images:
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2024
32
47
  - version: "svcomp24"
48
+ doi: "10.5281/zenodo.10211062"
33
49
  benchexec_toolinfo_options: []
34
50
  required_ubuntu_packages:
35
51
  - python3
36
52
  - python3-lxml
37
- doi: "10.5281/zenodo.10211062"
38
53
  - version: "svcomp23"
54
+ doi: "10.5281/zenodo.7630406"
39
55
  benchexec_toolinfo_options: []
40
56
  required_ubuntu_packages:
41
57
  - python3
42
58
  - python3-lxml
43
- doi: "10.5281/zenodo.7630406"
44
59
 
45
60
  competition_participations:
61
+ - competition: "SV-COMP 2026"
62
+ track: "Validation of Violation Witnesses v1"
63
+ tool_version: "svcomp26"
64
+ jury_member:
65
+ name: Hors Concours
66
+ institution: --
67
+ country: --
68
+ url:
69
+ label:
70
+ - inactive
46
71
  - competition: "SV-COMP 2025"
47
- track: "Validation of Violation Witnesses 1.0"
72
+ track: "Validation of Violation Witnesses v1"
48
73
  tool_version: "svcomp25"
49
74
  jury_member:
50
75
  orcid: 0000-0003-1072-8137
@@ -53,7 +78,7 @@ competition_participations:
53
78
  country: Czechia
54
79
  url:
55
80
  - competition: "SV-COMP 2024"
56
- track: "Validation of Violation Witnesses 1.0"
81
+ track: "Validation of Violation Witnesses v1"
57
82
  tool_version: "svcomp24"
58
83
  jury_member:
59
84
  orcid: 0000-0003-1072-8137
@@ -62,7 +87,7 @@ competition_participations:
62
87
  country: Czechia
63
88
  url:
64
89
  - competition: "SV-COMP 2023"
65
- track: "Validation of Violation Witnesses 1.0"
90
+ track: "Validation of Violation Witnesses v1"
66
91
  tool_version: "svcomp23"
67
92
  jury_member:
68
93
  orcid: 0000-0003-1072-8137
@@ -3,7 +3,7 @@ name: Symbiotic
3
3
  description: |
4
4
  Symbiotic is a configurable framework for program analysis and verification
5
5
  combining static analyses, program slicing, and several tools as
6
- verification engines, in particular (a fork of) Klee and Slowbeast.
6
+ verification engines, in particular (a fork of) Klee and Slowbeast.
7
7
  input_languages:
8
8
  - C
9
9
  project_url: https://github.com/staticafi/symbiotic
@@ -22,6 +22,29 @@ maintainers:
22
22
  url: "https://www.fi.muni.cz/~xjonas/"
23
23
 
24
24
  versions:
25
+ - version: "svcomp26"
26
+ doi: "10.5281/zenodo.17698724"
27
+ benchexec_toolinfo_options: ['--sv-comp']
28
+ required_ubuntu_packages:
29
+ - python3
30
+ - python3-lxml
31
+ - python3-clang
32
+ - python3-yaml
33
+ base_container_images:
34
+ - docker.io/ubuntu:24.04
35
+ - version: "testcomp26"
36
+ doi: "10.5281/zenodo.17698724"
37
+ benchexec_toolinfo_options: ['--test-comp']
38
+ required_ubuntu_packages:
39
+ - python3
40
+ - python3-lxml
41
+ - python3-clang
42
+ - python3-yaml
43
+ base_container_images:
44
+ - docker.io/ubuntu:24.04
45
+ full_container_images:
46
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
47
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
25
48
  - version: "svcomp25"
26
49
  doi: "10.5281/zenodo.14230101"
27
50
  benchexec_toolinfo_options: ['--witness', 'witness.graphml', '--sv-comp']
@@ -62,6 +85,46 @@ versions:
62
85
  - python3-lxml
63
86
 
64
87
  competition_participations:
88
+ - competition: "SV-COMP 2026"
89
+ track: "Verification"
90
+ tool_version: "svcomp26"
91
+ jury_member:
92
+ orcid: 0000-0003-4703-0795
93
+ name: Martin Jonáš
94
+ institution: Masaryk University, Brno
95
+ country: Czechia
96
+ url: "https://www.fi.muni.cz/~xjonas/"
97
+ participants:
98
+ - name: Paulína Ayaziová
99
+ orcid: 0000-0003-1072-8137
100
+ - name: Martin Jonáš
101
+ orcid: 0000-0003-4703-0795
102
+ - name: Vincent Mihalkovič
103
+ orcid: 0009-0009-5684-8434
104
+ - name: Jindřich Sedláček
105
+ orcid: 0009-0007-5356-3690
106
+ - name: Jan Strejček
107
+ orcid: 0000-0001-5873-403X
108
+ - competition: "Test-Comp 2026"
109
+ track: "Test Generation"
110
+ tool_version: "testcomp26"
111
+ jury_member:
112
+ orcid: 0000-0003-4703-0795
113
+ name: Martin Jonáš
114
+ institution: Masaryk University, Brno
115
+ country: Czechia
116
+ url: "https://www.fi.muni.cz/~xjonas/"
117
+ participants:
118
+ - name: Paulína Ayaziová
119
+ orcid: 0000-0003-1072-8137
120
+ - name: Martin Jonáš
121
+ orcid: 0000-0003-4703-0795
122
+ - name: Vincent Mihalkovič
123
+ orcid: 0009-0009-5684-8434
124
+ - name: Jindřich Sedláček
125
+ orcid: 0009-0007-5356-3690
126
+ - name: Jan Strejček
127
+ orcid: 0000-0001-5873-403X
65
128
  - competition: "SV-COMP 2025"
66
129
  track: "Verification"
67
130
  tool_version: "svcomp25"
@@ -0,0 +1,53 @@
1
+ id: testcoca
2
+ name: TestCoCa
3
+ input_languages:
4
+ - C
5
+ project_url: https://github.com/staticafi/TestCoCa
6
+ repository_url: https://github.com/staticafi/TestCoCa
7
+ spdx_license_identifier: Zlib
8
+ benchexec_toolinfo_module: benchexec.tools.testcoca
9
+ fmtools_format_version: "2.0"
10
+ fmtools_entry_maintainers:
11
+ - ergangmartin
12
+
13
+ maintainers:
14
+ - orcid: 0009-0009-6122-9574
15
+ name: Marek Trtík
16
+ institution: Masaryk University, Brno
17
+ country: Czechia
18
+ url:
19
+
20
+ versions:
21
+ - version: "testcomp26"
22
+ doi: 10.5281/zenodo.17819536
23
+ benchexec_toolinfo_options: ['--test_suite', '${witness}', "--max_exec_megabytes", "512", "--max_exec_milliseconds", "600000", "--testcomp", "--format"]
24
+ base_container_images:
25
+ - docker.io/ubuntu:24.04
26
+ required_ubuntu_packages:
27
+ - g++-multilib
28
+ - clang
29
+ - llvm
30
+ - clang-tidy
31
+ full_container_images:
32
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
33
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
34
+
35
+ competition_participations:
36
+ - competition: "Test-Comp 2026"
37
+ track: "Validation of Test Suites Clang Formatted"
38
+ tool_version: "testcomp26"
39
+ jury_member:
40
+ orcid: 0009-0009-6122-9574
41
+ name: Marek Trtík
42
+ institution: Masaryk University, Brno
43
+ country: Czechia
44
+ url:
45
+ participants:
46
+ - orcid: 0009-0009-2505-2716
47
+ name: Martin Ergang
48
+ - orcid: 0009-0009-6122-9574
49
+ name: Marek Trtík
50
+
51
+ techniques: []
52
+ frameworks_solvers: []
53
+ literature: []
@@ -24,6 +24,55 @@ maintainers:
24
24
  country: Germany
25
25
  url: https://www.sosy-lab.org/people/lemberger/
26
26
  versions:
27
+ - version: "testcomp26-clang-formatted"
28
+ doi: 10.5281/zenodo.17698774
29
+ benchexec_toolinfo_options: ['--test-suite', '${witness}', '--memlimit', '6GB', '--timelimit-per-run', '50', '--format', '--verbose', '--no-plots', '--prep-cgroup', '--disable-info-files', '--compiler', 'clang', '--cov-tool', 'llvm-cov', '--reduction', 'BY_ORDER', '--reduction-output', 'test-suite']
30
+ base_container_images:
31
+ - docker.io/ubuntu:24.04
32
+ required_ubuntu_packages:
33
+ - clang
34
+ - clang-format
35
+ - clang-tidy
36
+ - llvm
37
+ - lcov
38
+ - gcc
39
+ - gcc-multilib
40
+ full_container_images:
41
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/10.5281/zenodo.18001984
42
+ - registry.gitlab.com/sosy-lab/benchmarking/competition-scripts/user:2026
43
+ - version: "testcomp26-clang-unformatted"
44
+ doi: 10.5281/zenodo.17698774
45
+ benchexec_toolinfo_options: ['--test-suite', '${witness}', '--memlimit', '6GB', '--timelimit-per-run', '50', '--verbose', '--no-plots', '--prep-cgroup', '--disable-info-files', '--compiler', 'clang', '--cov-tool', 'llvm-cov', '--reduction', 'BY_ORDER', '--reduction-output', 'test-suite']
46
+ required_ubuntu_packages:
47
+ - clang
48
+ - clang-format
49
+ - clang-tidy
50
+ - llvm
51
+ - lcov
52
+ - gcc
53
+ - gcc-multilib
54
+ - version: "testcomp26-gcc-formatted"
55
+ doi: 10.5281/zenodo.17698774
56
+ benchexec_toolinfo_options: ['--test-suite', '${witness}', '--memlimit', '6GB', '--timelimit-per-run', '50', '--format', '--verbose', '--no-plots', '--prep-cgroup', '--disable-info-files', '--reduction', 'BY_ORDER', '--reduction-output', 'test-suite']
57
+ required_ubuntu_packages:
58
+ - clang
59
+ - clang-format
60
+ - clang-tidy
61
+ - llvm
62
+ - lcov
63
+ - gcc
64
+ - gcc-multilib
65
+ - version: "testcomp26-gcc-unformatted"
66
+ doi: 10.5281/zenodo.17698774
67
+ benchexec_toolinfo_options: ['--test-suite', '${witness}', '--memlimit', '6GB', '--timelimit-per-run', '50', '--verbose', '--no-plots', '--prep-cgroup', '--disable-info-files', '--reduction', 'BY_ORDER', '--reduction-output', 'test-suite']
68
+ required_ubuntu_packages:
69
+ - clang
70
+ - clang-format
71
+ - clang-tidy
72
+ - llvm
73
+ - lcov
74
+ - gcc
75
+ - gcc-multilib
27
76
  - version: "testcomp25-clang-formatted"
28
77
  doi: 10.5281/zenodo.14544775
29
78
  benchexec_toolinfo_options: ['--memlimit', '6GB', '--timelimit-per-run', '50', '--format', '--verbose', '--no-plots', '--prep-cgroup', '--disable-info-files', '--compiler', 'clang', '--cov-tool', 'llvm-cov', '--reduction', 'BY_ORDER', '--reduction-output', 'test-suite']
@@ -75,6 +124,54 @@ versions:
75
124
  required_ubuntu_packages: []
76
125
 
77
126
  competition_participations:
127
+ - competition: "Test-Comp 2026"
128
+ track: "Validation of Test Suites Clang Formatted"
129
+ tool_version: "testcomp26-clang-formatted"
130
+ jury_member:
131
+ orcid: 0000-0001-7365-5030
132
+ name: Matthias Kettl
133
+ institution: LMU Munich
134
+ country: Germany
135
+ url: https://www.sosy-lab.org/people/kettl/
136
+ participants:
137
+ - orcid: 0000-0001-7365-5030
138
+ name: Matthias Kettl
139
+ - competition: "Test-Comp 2026"
140
+ track: "Validation of Test Suites Clang Unformatted"
141
+ tool_version: "testcomp26-clang-unformatted"
142
+ jury_member:
143
+ orcid: 0000-0001-7365-5030
144
+ name: Matthias Kettl
145
+ institution: LMU Munich
146
+ country: Germany
147
+ url: https://www.sosy-lab.org/people/kettl/
148
+ participants:
149
+ - orcid: 0000-0001-7365-5030
150
+ name: Matthias Kettl
151
+ - competition: "Test-Comp 2026"
152
+ track: "Validation of Test Suites GCC Formatted"
153
+ tool_version: "testcomp26-gcc-formatted"
154
+ jury_member:
155
+ orcid: 0000-0001-7365-5030
156
+ name: Matthias Kettl
157
+ institution: LMU Munich
158
+ country: Germany
159
+ url: https://www.sosy-lab.org/people/kettl/
160
+ participants:
161
+ - orcid: 0000-0001-7365-5030
162
+ name: Matthias Kettl
163
+ - competition: "Test-Comp 2026"
164
+ track: "Validation of Test Suites GCC Unformatted"
165
+ tool_version: "testcomp26-gcc-unformatted"
166
+ jury_member:
167
+ orcid: 0000-0001-7365-5030
168
+ name: Matthias Kettl
169
+ institution: LMU Munich
170
+ country: Germany
171
+ url: https://www.sosy-lab.org/people/kettl/
172
+ participants:
173
+ - orcid: 0000-0001-7365-5030
174
+ name: Matthias Kettl
78
175
  - competition: "Test-Comp 2025"
79
176
  track: "Validation of Test Suites Clang Formatted"
80
177
  tool_version: "testcomp25-clang-formatted"