Skip to content

Commit c353757

Browse files
committed
Add copyright header
1 parent 8cee495 commit c353757

26 files changed

+178
-4
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
cpu_cores=$(shell nproc)
29

310

cv/aux/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# Continuous Verification Framework provides processing and managing verification results.
2-
# https://github.com/ispras/cv
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
33
#
4-
# Copyright © 2025 ISP RAS
5-
# Copyright © 2025 Vitalii Mordan
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
65
#
76
# SPDX-License-Identifier: Apache-2.0

cv/aux/common.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
Common functions.
310
"""

cv/benchmark_visualizer.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#!/usr/bin/python3
22

3+
# Continuous Verification Framework - processing and managing verification results.
4+
# Repository: https://github.com/ispras/cv
5+
#
6+
# Copyright © 2025 Vitalii Mordan, ISP RAS
7+
#
8+
# SPDX-License-Identifier: Apache-2.0
9+
310
"""
411
This script provides functionality to launch a specific benchmark and visualize the results.
512
"""

cv/bridge.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#!/usr/bin/python3
22

3+
# Continuous Verification Framework - processing and managing verification results.
4+
# Repository: https://github.com/ispras/cv
5+
#
6+
# Copyright © 2025 Vitalii Mordan, ISP RAS
7+
#
8+
# SPDX-License-Identifier: Apache-2.0
9+
310
"""
411
This script provides connection to Klever jobs.
512
"""

cv/components/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
Here global names are defined.
310
"""

cv/components/benchmark_launcher.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
Component for launching benchmark and processing its results.
310
"""

cv/components/component.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
Class for representation of an arbitrary component.
310
"""

cv/components/coverage_processor.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
This component processes coverage for solved verification task.
310
"""

cv/components/exporter.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Continuous Verification Framework - processing and managing verification results.
2+
# Repository: https://github.com/ispras/cv
3+
#
4+
# Copyright © 2025 Vitalii Mordan, ISP RAS
5+
#
6+
# SPDX-License-Identifier: Apache-2.0
7+
18
"""
29
Component for extracting results into archive to be uploaded in the web-interface.
310
"""

0 commit comments

Comments
 (0)