From e76916e188ce4bf9a9cb8d37975a3aa04b2f1c50 Mon Sep 17 00:00:00 2001 From: Stephan Lipp Date: Tue, 5 Nov 2024 15:42:38 +0100 Subject: [PATCH] refactor: update license in source files --- sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h | 2 +- sast-fuzz/static_analysis/inspection/include/sfi/func_info.h | 2 +- sast-fuzz/static_analysis/inspection/include/sfi/inspector.h | 2 +- sast-fuzz/static_analysis/inspection/include/sfi/io.h | 2 +- sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h | 2 +- .../static_analysis/inspection/include/sfi/pretty_printer.h | 2 +- sast-fuzz/static_analysis/inspection/include/sfi/types.h | 2 +- sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp | 2 +- .../static_analysis/inspection/src/container/func_info.cpp | 2 +- sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp | 2 +- sast-fuzz/static_analysis/inspection/src/main.cpp | 2 +- sast-fuzz/static_analysis/inspection/src/utils/io.cpp | 2 +- sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp | 2 +- .../static_analysis/inspection/src/utils/pretty_printer.cpp | 2 +- sast-fuzz/static_analysis/inspection/tests/main.cpp | 2 +- sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp | 2 +- sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp | 2 +- sast-fuzz/static_analysis/inspection/tests/test_io.cpp | 2 +- sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp | 2 +- sast-fuzz/static_analysis/sast/src/sfa/__init__.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/main.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py | 2 +- sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py | 2 +- sast-fuzz/static_analysis/sast/tests/__init__.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_filter.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_flags.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_fs.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_grouping.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_proc.py | 2 +- sast-fuzz/static_analysis/sast/tests/test_tool_runner.py | 2 +- scripts/crash-dedup/src/cdd/__init__.py | 2 +- scripts/crash-dedup/src/cdd/container/__init__.py | 2 +- scripts/crash-dedup/src/cdd/container/san.py | 2 +- scripts/crash-dedup/src/cdd/container/summary.py | 2 +- scripts/crash-dedup/src/cdd/grouping.py | 2 +- scripts/crash-dedup/src/cdd/main.py | 2 +- scripts/crash-dedup/src/cdd/utils/__init__.py | 2 +- scripts/crash-dedup/src/cdd/utils/fs.py | 2 +- scripts/crash-dedup/src/cdd/utils/proc.py | 2 +- scripts/crash-dedup/tests/__init__.py | 2 +- scripts/crash-dedup/tests/test_grouping.py | 2 +- scripts/crash-dedup/tests/test_san.py | 2 +- 48 files changed, 48 insertions(+), 48 deletions(-) diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h b/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h index 6dcc57e..d0e0bc1 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/bb_info.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h b/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h index 0f68691..c9c83f6 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/func_info.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h b/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h index c115cae..e2d4186 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/inspector.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/io.h b/sast-fuzz/static_analysis/inspection/include/sfi/io.h index 90a4189..bec48be 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/io.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/io.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h b/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h index 98071f2..695822e 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/llvm_utils.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h b/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h index a748513..cb4f1cd 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/pretty_printer.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/include/sfi/types.h b/sast-fuzz/static_analysis/inspection/include/sfi/types.h index 034f285..049a397 100644 --- a/sast-fuzz/static_analysis/inspection/include/sfi/types.h +++ b/sast-fuzz/static_analysis/inspection/include/sfi/types.h @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp b/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp index 8299e06..46cfa7f 100644 --- a/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp +++ b/sast-fuzz/static_analysis/inspection/src/container/bb_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp b/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp index 87f6169..9cd550b 100644 --- a/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp +++ b/sast-fuzz/static_analysis/inspection/src/container/func_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp b/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp index 754539c..0ed7a83 100644 --- a/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp +++ b/sast-fuzz/static_analysis/inspection/src/logic/inspector.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/main.cpp b/sast-fuzz/static_analysis/inspection/src/main.cpp index 1abf292..d504552 100644 --- a/sast-fuzz/static_analysis/inspection/src/main.cpp +++ b/sast-fuzz/static_analysis/inspection/src/main.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/io.cpp b/sast-fuzz/static_analysis/inspection/src/utils/io.cpp index ebc32b8..f4f04a6 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/io.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/io.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp b/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp index 346b6b5..7afb1d9 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/llvm_utils.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp b/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp index 706df57..ea6c0e5 100644 --- a/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp +++ b/sast-fuzz/static_analysis/inspection/src/utils/pretty_printer.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/main.cpp b/sast-fuzz/static_analysis/inspection/tests/main.cpp index 5459643..0e097ec 100644 --- a/sast-fuzz/static_analysis/inspection/tests/main.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/main.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp b/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp index 1e76f9c..1ab363a 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_bb_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp b/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp index 872de01..c30bfbe 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_func_info.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_io.cpp b/sast-fuzz/static_analysis/inspection/tests/test_io.cpp index a62d2a7..0b4f100 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_io.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_io.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp b/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp index bf9689a..ca2daa8 100644 --- a/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp +++ b/sast-fuzz/static_analysis/inspection/tests/test_llvm_utils.cpp @@ -1,5 +1,5 @@ /** - * Copyright 2023 Stephan Lipp + * Copyright 2023-2024 Chair for Software & Systems Engineering, TUM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/__init__.py index fae18cc..b8a80a5 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py index 9786d23..9479567 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py index f41e36c..491e8fb 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/factory.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py index cb0bfc1..4424037 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/filter.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py index 8276479..5e06278 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py b/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py index bd0d471..be75100 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/analysis/tool_runner.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/main.py b/sast-fuzz/static_analysis/sast/src/sfa/main.py index b725c38..95e9f75 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/main.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/main.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py index a69c9d1..f40dec7 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py index 9d2d0ad..fc97d3c 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py b/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py index 29c4346..cdaa528 100644 --- a/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py +++ b/sast-fuzz/static_analysis/sast/src/sfa/utils/proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/__init__.py b/sast-fuzz/static_analysis/sast/tests/__init__.py index 709acb3..e4a1c45 100644 --- a/sast-fuzz/static_analysis/sast/tests/__init__.py +++ b/sast-fuzz/static_analysis/sast/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_filter.py b/sast-fuzz/static_analysis/sast/tests/test_filter.py index 1674d97..a314229 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_filter.py +++ b/sast-fuzz/static_analysis/sast/tests/test_filter.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_flags.py b/sast-fuzz/static_analysis/sast/tests/test_flags.py index 6eff857..c8300c9 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_flags.py +++ b/sast-fuzz/static_analysis/sast/tests/test_flags.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_fs.py b/sast-fuzz/static_analysis/sast/tests/test_fs.py index 285479d..eeff66d 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_fs.py +++ b/sast-fuzz/static_analysis/sast/tests/test_fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_grouping.py b/sast-fuzz/static_analysis/sast/tests/test_grouping.py index 4ae9342..bd8d9c1 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_grouping.py +++ b/sast-fuzz/static_analysis/sast/tests/test_grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_proc.py b/sast-fuzz/static_analysis/sast/tests/test_proc.py index 2cecb44..464955d 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_proc.py +++ b/sast-fuzz/static_analysis/sast/tests/test_proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py b/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py index 0dc9b84..861842d 100644 --- a/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py +++ b/sast-fuzz/static_analysis/sast/tests/test_tool_runner.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/__init__.py b/scripts/crash-dedup/src/cdd/__init__.py index 9035879..6275cdc 100644 --- a/scripts/crash-dedup/src/cdd/__init__.py +++ b/scripts/crash-dedup/src/cdd/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/__init__.py b/scripts/crash-dedup/src/cdd/container/__init__.py index a69c9d1..f40dec7 100644 --- a/scripts/crash-dedup/src/cdd/container/__init__.py +++ b/scripts/crash-dedup/src/cdd/container/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/san.py b/scripts/crash-dedup/src/cdd/container/san.py index 33fd3ac..e117d45 100644 --- a/scripts/crash-dedup/src/cdd/container/san.py +++ b/scripts/crash-dedup/src/cdd/container/san.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/container/summary.py b/scripts/crash-dedup/src/cdd/container/summary.py index 2731206..784b2ae 100644 --- a/scripts/crash-dedup/src/cdd/container/summary.py +++ b/scripts/crash-dedup/src/cdd/container/summary.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/grouping.py b/scripts/crash-dedup/src/cdd/grouping.py index 0308c70..3a366f0 100644 --- a/scripts/crash-dedup/src/cdd/grouping.py +++ b/scripts/crash-dedup/src/cdd/grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/main.py b/scripts/crash-dedup/src/cdd/main.py index 39b3ba4..8222d06 100644 --- a/scripts/crash-dedup/src/cdd/main.py +++ b/scripts/crash-dedup/src/cdd/main.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/__init__.py b/scripts/crash-dedup/src/cdd/utils/__init__.py index a69c9d1..f40dec7 100644 --- a/scripts/crash-dedup/src/cdd/utils/__init__.py +++ b/scripts/crash-dedup/src/cdd/utils/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/fs.py b/scripts/crash-dedup/src/cdd/utils/fs.py index b25e2fa..f0ac8ef 100644 --- a/scripts/crash-dedup/src/cdd/utils/fs.py +++ b/scripts/crash-dedup/src/cdd/utils/fs.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/src/cdd/utils/proc.py b/scripts/crash-dedup/src/cdd/utils/proc.py index 946eaa8..74200b2 100644 --- a/scripts/crash-dedup/src/cdd/utils/proc.py +++ b/scripts/crash-dedup/src/cdd/utils/proc.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/__init__.py b/scripts/crash-dedup/tests/__init__.py index 709acb3..e4a1c45 100644 --- a/scripts/crash-dedup/tests/__init__.py +++ b/scripts/crash-dedup/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/test_grouping.py b/scripts/crash-dedup/tests/test_grouping.py index e7744f2..04de3ee 100644 --- a/scripts/crash-dedup/tests/test_grouping.py +++ b/scripts/crash-dedup/tests/test_grouping.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/crash-dedup/tests/test_san.py b/scripts/crash-dedup/tests/test_san.py index ad76b62..288c52d 100644 --- a/scripts/crash-dedup/tests/test_san.py +++ b/scripts/crash-dedup/tests/test_san.py @@ -1,4 +1,4 @@ -# Copyright 2023 Stephan Lipp +# Copyright 2023-2024 Chair for Software & Systems Engineering, TUM # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.