From 97a9329d6a7f43f6f24f078afd0cd91716ffbcce Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 19 Jun 2023 19:48:29 +0200 Subject: [PATCH 01/15] Remove --- .github/workflows/CI-cygwin.yml | 51 --- .github/workflows/CI-mingw.yml | 37 -- .github/workflows/CI-unixish-docker.yml | 163 -------- .github/workflows/CI-unixish.yml | 473 ------------------------ .github/workflows/CI-windows.yml | 205 ---------- .github/workflows/asan.yml | 90 ----- .github/workflows/buildman.yml | 28 -- .github/workflows/cifuzz.yml | 26 -- .github/workflows/codeql-analysis.yml | 47 --- .github/workflows/coverage.yml | 61 --- .github/workflows/format.yml | 40 -- .github/workflows/iwyu.yml | 149 -------- .github/workflows/release-windows.yml | 145 -------- .github/workflows/scriptcheck.yml | 166 --------- .github/workflows/selfcheck.yml | 128 ------- .github/workflows/tsan.yml | 90 ----- .github/workflows/ubsan.yml | 86 ----- .github/workflows/valgrind.yml | 54 --- 18 files changed, 2039 deletions(-) delete mode 100644 .github/workflows/CI-cygwin.yml delete mode 100644 .github/workflows/CI-mingw.yml delete mode 100644 .github/workflows/CI-unixish-docker.yml delete mode 100644 .github/workflows/CI-unixish.yml delete mode 100644 .github/workflows/CI-windows.yml delete mode 100644 .github/workflows/asan.yml delete mode 100644 .github/workflows/buildman.yml delete mode 100644 .github/workflows/cifuzz.yml delete mode 100644 .github/workflows/codeql-analysis.yml delete mode 100644 .github/workflows/coverage.yml delete mode 100644 .github/workflows/format.yml delete mode 100644 .github/workflows/iwyu.yml delete mode 100644 .github/workflows/release-windows.yml delete mode 100644 .github/workflows/scriptcheck.yml delete mode 100644 .github/workflows/selfcheck.yml delete mode 100644 .github/workflows/tsan.yml delete mode 100644 .github/workflows/ubsan.yml delete mode 100644 .github/workflows/valgrind.yml diff --git a/.github/workflows/CI-cygwin.yml b/.github/workflows/CI-cygwin.yml deleted file mode 100644 index 31557ecbcc7..00000000000 --- a/.github/workflows/CI-cygwin.yml +++ /dev/null @@ -1,51 +0,0 @@ -# Some convenient links: -# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md -# - -name: CI-cygwin - -on: [push,pull_request] - -permissions: - contents: read - -defaults: - run: - shell: cmd - -jobs: - build_cygwin: - strategy: - matrix: - os: [windows-2022] - arch: [x64] - include: - - platform: 'x86_64' - packages: | - gcc-g++ - python3 - fail-fast: false - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: Set up Cygwin - uses: cygwin/cygwin-install-action@master - with: - platform: ${{ matrix.arch }} - packages: ${{ matrix.packages }} - - # Cygwin will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries. - - name: Build all and run test - run: | - C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make VERBOSE=1 -j2 check - - - name: Extra test for misra - run: | - cd %GITHUB_WORKSPACE%\addons\test - ..\..\cppcheck.exe --dump -DDUMMY --suppress=uninitvar --inline-suppr misra\misra-test.c --std=c89 --platform=unix64 - python3 ..\misra.py -verify misra\misra-test.c.dump - ..\..\cppcheck.exe --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 misra\misra-ctu-1-test.c misra\misra-ctu-2-test.c - diff --git a/.github/workflows/CI-mingw.yml b/.github/workflows/CI-mingw.yml deleted file mode 100644 index 152e84902c2..00000000000 --- a/.github/workflows/CI-mingw.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Some convenient links: -# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md -# - -name: CI-mingw - -on: [push,pull_request] - -permissions: - contents: read - -defaults: - run: - shell: cmd - -jobs: - build_mingw: - strategy: - matrix: - os: [windows-2019] # fails to download with "windows-2022" - arch: [x64] # TODO: fix x86 build? - fail-fast: false - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: Set up MinGW - uses: egor-tensin/setup-mingw@v2 - with: - platform: ${{ matrix.arch }} - - # MinGW will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries. - - name: Build all and run test - run: | - mingw32-make VERBOSE=1 -j2 check diff --git a/.github/workflows/CI-unixish-docker.yml b/.github/workflows/CI-unixish-docker.yml deleted file mode 100644 index f8dd4bb75fe..00000000000 --- a/.github/workflows/CI-unixish-docker.yml +++ /dev/null @@ -1,163 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: CI-unixish-docker - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build_cmake: - - strategy: - matrix: - image: ["centos:7", "ubuntu:14.04", "ubuntu:16.04", "ubuntu:18.04", "ubuntu:23.04"] - fail-fast: false # Prefer quick result - - runs-on: ubuntu-22.04 - - # TODO: is this actually applied to the guest? - env: - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - container: - image: ${{ matrix.image }} - - steps: - - uses: actions/checkout@v3 - - - name: Install missing software on CentOS 7 - if: matrix.image == 'centos:7' - run: | - yum install -y cmake gcc-c++ make pcre-devel - yum --enablerepo=extras install -y epel-release - yum install -y ccache - - - name: Install missing software on ubuntu - if: contains(matrix.image, 'ubuntu') - run: | - apt-get update - apt-get install -y cmake g++ make libxml2-utils libpcre3-dev - - # required so a default Qt installation is configured - - name: Install missing software on ubuntu 18.04 - if: false # matrix.os == 'ubuntu-18.04' - run: | - sudo apt-get install qt5-default - - # needs to be called after the package installation since - # - it doesn't call "apt-get update" - # - it doesn't support centos - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - if: matrix.image != 'ubuntu:14.04' # no support for --set-config - with: - key: ${{ github.workflow }}-${{ matrix.image }} - - # tests require CMake 3.9 - no ccache available - - name: CMake build (no tests / no ccache) - if: matrix.image == 'ubuntu:14.04' - run: | - mkdir cmake.output - cd cmake.output - cmake -G "Unix Makefiles" -DHAVE_RULES=On .. - cmake --build . -- -j$(nproc) - - # tests require CMake 3.9 - ccache available - - name: CMake build (no tests) - if: matrix.image == 'centos:7' || matrix.image == 'ubuntu:16.04' - run: | - mkdir cmake.output - cd cmake.output - cmake -G "Unix Makefiles" -DHAVE_RULES=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache .. - cmake --build . -- -j$(nproc) - - - name: CMake build - if: matrix.image != 'centos:7' && matrix.image != 'ubuntu:14.04' && matrix.image != 'ubuntu:16.04' - run: | - mkdir cmake.output - cd cmake.output - cmake -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache .. - cmake --build . -- -j$(nproc) - - - name: Run CMake test - if: matrix.image != 'centos:7' && matrix.image != 'ubuntu:14.04' && matrix.image != 'ubuntu:16.04' - run: | - cmake --build cmake.output --target check -- -j$(nproc) - - build_make: - - strategy: - matrix: - image: ["centos:7", "ubuntu:14.04", "ubuntu:16.04", "ubuntu:18.04", "ubuntu:22.10"] - fail-fast: false # Prefer quick result - - runs-on: ubuntu-22.04 - - container: - image: ${{ matrix.image }} - - steps: - - uses: actions/checkout@v3 - - - name: Install missing software on CentOS 7 - if: matrix.image == 'centos:7' - run: | - yum install -y gcc-c++ make which python3 pcre-devel - yum --enablerepo=extras install -y epel-release - yum install -y ccache - - - name: Install missing software on ubuntu - if: contains(matrix.image, 'ubuntu') - run: | - apt-get update - apt-get install -y g++ make python3 libxml2-utils libpcre3-dev - - # needs to be called after the package installation since - # - it doesn't call "apt-get update" - # - it doesn't support centos - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - if: matrix.image != 'ubuntu:14.04' # no support for --set-config - with: - key: ${{ github.workflow }}-${{ matrix.image }} - - - name: Build cppcheck - run: | - # "/usr/lib64" for centos / "/usr/lib" for ubuntu - export PATH="/usr/lib64/ccache:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) HAVE_RULES=yes - - - name: Build test - run: | - # "/usr/lib64" for centos / "/usr/lib" for ubuntu - export PATH="/usr/lib64/ccache:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) testrunner HAVE_RULES=yes - - - name: Run test - run: | - make -j$(nproc) check HAVE_RULES=yes - - # requires python3 - - name: Run extra tests - run: | - tools/generate_and_run_more_tests.sh - - # requires which - - name: Validate - run: | - make -j$(nproc) checkCWEEntries validateXML - - - name: Test addons - run: | - ./cppcheck --addon=threadsafety addons/test/threadsafety - ./cppcheck --addon=threadsafety --std=c++03 addons/test/threadsafety - - - name: Generate Qt help file on ubuntu 18.04 - if: false # matrix.os == 'ubuntu-18.04' - run: | - pushd gui/help - qcollectiongenerator online-help.qhcp -o online-help.qhc - diff --git a/.github/workflows/CI-unixish.yml b/.github/workflows/CI-unixish.yml deleted file mode 100644 index 0c941e05756..00000000000 --- a/.github/workflows/CI-unixish.yml +++ /dev/null @@ -1,473 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: CI-unixish - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build_cmake_tinyxml2: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - env: - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Install missing software on ubuntu - if: contains(matrix.os, 'ubuntu') - run: | - sudo apt-get update - sudo apt-get install libxml2-utils libtinyxml2-dev qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - # pcre was removed from runner images in November 2022 - brew install coreutils qt@5 tinyxml2 pcre - - - name: CMake build on ubuntu (with GUI / system tinyxml2) - if: contains(matrix.os, 'ubuntu') - run: | - cmake -S . -B cmake.output.tinyxml2 -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_BUNDLED_TINYXML2=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - cmake --build cmake.output.tinyxml2 -- -j$(nproc) - - - name: CMake build on macos (with GUI / system tinyxml2) - if: contains(matrix.os, 'macos') - run: | - cmake -S . -B cmake.output.tinyxml2 -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_BUNDLED_TINYXML2=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DQt5_DIR=$(brew --prefix qt@5)/lib/cmake/Qt5 - cmake --build cmake.output.tinyxml2 -- -j$(nproc) - - - name: Run CMake test (system tinyxml2) - run: | - cmake --build cmake.output.tinyxml2 --target check -- -j$(nproc) - - build_cmake: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - env: - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Install missing software on ubuntu - if: contains(matrix.os, 'ubuntu') - run: | - sudo apt-get update - sudo apt-get install libxml2-utils qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - # pcre was removed from runner images in November 2022 - brew install coreutils qt@5 pcre - - - name: CMake build on ubuntu (with GUI) - if: contains(matrix.os, 'ubuntu') - run: | - cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - cmake --build cmake.output -- -j$(nproc) - - - name: CMake build on macos (with GUI) - if: contains(matrix.os, 'macos') - run: | - cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DQt5_DIR=$(brew --prefix qt@5)/lib/cmake/Qt5 - cmake --build cmake.output -- -j$(nproc) - - - name: Run CMake test - run: | - cmake --build cmake.output --target check -- -j$(nproc) - - - name: Run CTest - run: | - pushd cmake.output - ctest --output-on-failure -j$(nproc) - - build_uchar: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - brew install coreutils - - - name: Build with Unsigned char - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) CXXFLAGS=-funsigned-char testrunner - - - name: Test with Unsigned char - run: | - ./testrunner TestSymbolDatabase - - build_mathlib: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - brew install coreutils - - - name: Build with TEST_MATHLIB_VALUE - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) CPPFLAGS=-DTEST_MATHLIB_VALUE all - - - name: Test with TEST_MATHLIB_VALUE - run: | - make -j$(nproc) CPPFLAGS=-DTEST_MATHLIB_VALUE check - - check_nonneg: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - # coreutils contains "g++" (default is "c++") and "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - brew install coreutils - - - name: Check syntax with NONNEG - run: | - ls lib/*.cpp | xargs -n 1 -P $(nproc) g++ -fsyntax-only -std=c++0x -Ilib -Iexternals -Iexternals/picojson -Iexternals/simplecpp -Iexternals/tinyxml2 -DNONNEG - - build_qmake: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: Install missing software on ubuntu - if: contains(matrix.os, 'ubuntu') - run: | - sudo apt-get update - sudo apt-get install qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - brew install coreutils qt@5 - # expose qmake - brew link qt@5 --force - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Build GUI - run: | - export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - pushd gui - qmake CONFIG+=debug CONFIG+=ccache HAVE_QCHART=yes - make -j$(nproc) - - # TODO: binaries are in a different location on macos - - name: Build and Run GUI tests - if: contains(matrix.os, 'ubuntu') - run: | - export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - pushd gui/test/cppchecklibrarydata - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - ./test-cppchecklibrarydata - popd - pushd gui/test/filelist - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - ./test-filelist - popd - pushd gui/test/projectfile - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - ./test-projectfile - popd - pushd gui/test/translationhandler - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - # TODO: requires X session because of QApplication dependency in translationhandler.cpp - #./test-translationhandler - popd - pushd gui/test/xmlreportv2 - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - ./test-xmlreportv2 - - - name: Generate Qt help file - run: | - pushd gui/help - qhelpgenerator online-help.qhcp -o online-help.qhc - - - name: Build triage - run: | - export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - pushd tools/triage - qmake CONFIG+=debug CONFIG+=ccache - make -j$(nproc) - - build: - - strategy: - matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] - fail-fast: false # Prefer quick result - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Install missing software on ubuntu - if: contains(matrix.os, 'ubuntu') - run: | - sudo apt-get update - sudo apt-get install libxml2-utils - - # packages for strict cfg checks - - name: Install missing software on ubuntu 22.04 (cfg) - if: matrix.os == 'ubuntu-22.04' - run: | - sudo apt-get install libcairo2-dev libcurl4-openssl-dev liblua5.3-dev libssl-dev libsqlite3-dev libcppunit-dev libsigc++-2.0-dev libgtk-3-dev libboost-all-dev libwxgtk3.0-gtk3-dev xmlstarlet qtbase5-dev - - # coreutils contains "nproc" - - name: Install missing software on macos - if: contains(matrix.os, 'macos') - run: | - # pcre was removed from runner images in November 2022 - brew install coreutils python3 pcre gnu-sed - - - name: Install missing Python packages - run: | - python3 -m pip install pip --upgrade - python3 -m pip install pytest - - - name: Build cppcheck - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) HAVE_RULES=yes - - - name: Build test - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) testrunner HAVE_RULES=yes - - - name: Run test - run: | - make -j$(nproc) check HAVE_RULES=yes - - # requires "gnu-sed" installed on macos - - name: Run extra tests - run: | - tools/generate_and_run_more_tests.sh - - # do not use pushd in this step since we go below the working directory - - name: Run test/cli - run: | - cd test/cli - python3 -m pytest test-*.py - cd ../../.. - ln -s cppcheck 'cpp check' - cd 'cpp check/test/cli' - python3 -m pytest test-*.py - - - name: Run cfg tests - if: matrix.os != 'ubuntu-22.04' - run: | - make -j$(nproc) checkcfg - - - name: Run cfg tests (strict) - if: matrix.os == 'ubuntu-22.04' - run: | - make -j$(nproc) checkcfg - env: - STRICT: 1 - - - name: Run showtimetop5 tests - run: | - ./tools/test_showtimetop5.sh - - - name: Run --dump test - run: | - ./cppcheck test/testpreprocessor.cpp --dump - xmllint --noout test/testpreprocessor.cpp.dump - - - name: Validate - run: | - make -j$(nproc) checkCWEEntries validateXML - - # TODO: move to scriptcheck.yml so these are tested with all Python versions? - - name: Test addons - run: | - ./cppcheck --error-exitcode=1 --inline-suppr --addon=threadsafety addons/test/threadsafety - ./cppcheck --error-exitcode=1 --inline-suppr --addon=threadsafety --std=c++03 addons/test/threadsafety - ./cppcheck --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 addons/test/misra/misra-ctu-*-test.c - pushd addons/test - # We'll force C89 standard to enable an additional verification for - # rules 5.4 and 5.5 which have standard-dependent options. - ../../cppcheck --dump -DDUMMY --suppress=uninitvar --inline-suppr misra/misra-test.c --std=c89 --platform=unix64 - python3 ../misra.py -verify misra/misra-test.c.dump - # TODO: do we need to verify something here? - ../../cppcheck --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra/misra-test.h - ../../cppcheck --dump misra/misra-test.cpp - python3 ../misra.py -verify misra/misra-test.cpp.dump - python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_ascii.txt -verify misra/misra-test.cpp.dump - python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_utf8.txt -verify misra/misra-test.cpp.dump - python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_windows1250.txt -verify misra/misra-test.cpp.dump - ../../cppcheck --addon=misra --enable=style --platform=avr8 --error-exitcode=1 misra/misra-test-avr8.c - ../../cppcheck --dump misc-test.cpp - python3 ../misc.py -verify misc-test.cpp.dump - ../../cppcheck --dump naming_test.c - python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.c.dump - ../../cppcheck --dump naming_test.cpp - python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump - ../../cppcheck --dump namingng_test.c - python3 ../namingng.py --configfile ../naming.json --verify namingng_test.c.dump - - - name: Ensure misra addon does not crash - if: contains(matrix.os, 'ubuntu') - run: | - ./cppcheck --addon=misra addons/test/misra/crash1.c | ( ! grep 'Bailing out from checking' ) - - - name: Build democlient - if: matrix.os == 'ubuntu-22.04' - run: | - warnings="-pedantic -Wall -Wextra -Wcast-qual -Wno-deprecated-declarations -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-shadow -Wno-missing-field-initializers -Wno-missing-braces -Wno-sign-compare -Wno-multichar" - g++ $warnings -c -Ilib -Iexternals/tinyxml2 democlient/democlient.cpp - - selfcheck: - needs: build # wait for all tests to be successful first - - runs-on: ubuntu-22.04 # run on the latest image only - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install qtbase5-dev qttools5-dev libqt5charts5-dev libboost-container-dev - - - name: Self check (build) - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - # compile with verification and ast matchers - make -j$(nproc) -s CPPFLAGS="-DCHECK_INTERNAL" CXXFLAGS="-g -O2 -DHAVE_BOOST" MATCHCOMPILER=yes VERIFY=1 - - - name: Generate UI files - run: | - pushd gui - qmake CONFIG+=debug HAVE_QCHART=yes - make -j$(nproc) compiler_uic_make_all mocables - - - name: Generate triage UI files - run: | - pushd tools/triage - qmake CONFIG+=debug - make -j$(nproc) compiler_uic_make_all mocables - - - name: Self check - run: | - selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings --check-level=exhaustive" - ec=0 - - # early exit - if [ $ec -eq 1 ]; then - exit $ec - fi - - # self check lib/cli - mkdir b1 - ./cppcheck $selfcheck_options --cppcheck-build-dir=b1 --addon=naming.json -DCHECK_INTERNAL cli lib || ec=1 - # check gui with qt settings - mkdir b2 - ./cppcheck $selfcheck_options --cppcheck-build-dir=b2 -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Igui/temp -Igui gui/*.cpp gui/temp/*.cpp || ec=1 - # self check test and tools - ./cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 - # triage - ./cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Itools/triage/temp -Igui tools/triage/*.cpp tools/triage/temp/*.cpp || ec=1 - exit $ec diff --git a/.github/workflows/CI-windows.yml b/.github/workflows/CI-windows.yml deleted file mode 100644 index 4da98719ded..00000000000 --- a/.github/workflows/CI-windows.yml +++ /dev/null @@ -1,205 +0,0 @@ -# Some convenient links: -# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md -# - -name: CI-windows - -on: [push,pull_request] - -permissions: - contents: read - -defaults: - run: - shell: cmd - -jobs: - - build_qt: - strategy: - matrix: - os: [windows-2019, windows-2022] - qt_ver: [5.15.2, 6.2.4, 6.5.0] - fail-fast: false - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - - - name: Set up Visual Studio environment - uses: ilammy/msvc-dev-cmd@v1 - with: - arch: x64 # no 32-bit Qt available - - - name: Install Qt ${{ matrix.qt_ver }} - uses: jurplel/install-qt-action@v3 - with: - version: ${{ matrix.qt_ver }} - modules: 'qtcharts' - cache: true - - - name: Build GUI release (qmake) - if: startsWith(matrix.qt_ver, '5') - run: | - cd gui || exit /b !errorlevel! - qmake HAVE_QCHART=yes || exit /b !errorlevel! - nmake release || exit /b !errorlevel! - env: - CL: /MP - - - name: Deploy GUI - if: startsWith(matrix.qt_ver, '5') - run: | - windeployqt Build\gui || exit /b !errorlevel! - del Build\gui\cppcheck-gui.ilk || exit /b !errorlevel! - del Build\gui\cppcheck-gui.pdb || exit /b !errorlevel! - - - name: Build GUI release (CMake) - if: startsWith(matrix.qt_ver, '6') - run: | - cmake -S . -B build -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_QT6=On || exit /b !errorlevel! - cmake --build build --target cppcheck-gui || exit /b !errorlevel! - - # TODO: deploy with CMake/Qt6 - - build: - strategy: - matrix: - os: [windows-2019, windows-2022] - arch: [x64, x86] - fail-fast: false - - runs-on: ${{ matrix.os }} - - env: - # see https://www.pcre.org/original/changelog.txt - PCRE_VERSION: 8.45 - - steps: - - uses: actions/checkout@v3 - - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: '3.11' - check-latest: true - - - name: Set up Visual Studio environment - uses: ilammy/msvc-dev-cmd@v1 - with: - arch: ${{ matrix.arch }} - - - name: Cache PCRE - id: cache-pcre - uses: actions/cache@v3 - with: - path: | - externals\pcre.h - externals\pcre.lib - externals\pcre64.lib - key: pcre-${{ env.PCRE_VERSION }}-${{ matrix.arch }}-bin-win - - - name: Download PCRE - if: steps.cache-pcre.outputs.cache-hit != 'true' - run: | - curl -fsSL https://github.com/pfultz2/pcre/archive/refs/tags/%PCRE_VERSION%.zip -o pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! - - - name: Install PCRE - if: steps.cache-pcre.outputs.cache-hit != 'true' - run: | - 7z x pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! - cd pcre-%PCRE_VERSION% || exit /b !errorlevel! - cmake . -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DPCRE_BUILD_PCRECPP=Off -DPCRE_BUILD_TESTS=Off -DPCRE_BUILD_PCREGREP=Off || exit /b !errorlevel! - nmake || exit /b !errorlevel! - copy pcre.h ..\externals || exit /b !errorlevel! - if "${{ matrix.arch }}" == "x86" ( - copy pcre.lib ..\externals\pcre.lib || exit /b !errorlevel! - ) else ( - copy pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel! - ) - env: - CL: /MP - - - name: Install missing Python packages - run: | - python -m pip install pip --upgrade || exit /b !errorlevel! - python -m pip install pytest || exit /b !errorlevel! - python -m pip install pytest-custom_exit_code || exit /b !errorlevel! - - - name: Run CMake - if: false # TODO: enable - run: | - set ARCH=${{ matrix.arch }} - if "${{ matrix.arch }}" == "x86" ( - set ARCH=Win32 - ) - cmake -S . -B build -DBUILD_TESTS=On || exit /b !errorlevel! - - - name: Build CLI debug configuration using MSBuild - run: | - set ARCH=${{ matrix.arch }} - if "${{ matrix.arch }}" == "x86" ( - set ARCH=Win32 - ) - :: cmake --build build --target check --config Debug || exit /b !errorlevel! - msbuild -m cppcheck.sln /p:Configuration=Debug-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel! - - - name: Run Debug test - run: .\bin\debug\testrunner.exe || exit /b !errorlevel! - - - name: Build CLI release configuration using MSBuild - run: | - set ARCH=${{ matrix.arch }} - if "${{ matrix.arch }}" == "x86" ( - set ARCH=Win32 - ) - :: cmake --build build --target check --config Release || exit /b !errorlevel! - msbuild -m cppcheck.sln /p:Configuration=Release-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel! - - - name: Run Release test - run: .\bin\testrunner.exe || exit /b !errorlevel! - - - name: Run test/cli - run: | - :: since FILESDIR is not set copy the binary to the root so the addons are found - :: copy .\build\bin\Release\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel! - copy .\bin\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel! - copy .\bin\cppcheck-core.dll .\cppcheck-core.dll || exit /b !errorlevel! - cd test/cli || exit /b !errorlevel! - :: python -m pytest --suppress-no-test-exit-code test-clang-import.py || exit /b !errorlevel! - python -m pytest test-helloworld.py || exit /b !errorlevel! - python -m pytest test-inline-suppress.py || exit /b !errorlevel! - python -m pytest test-more-projects.py || exit /b !errorlevel! - python -m pytest test-other.py || exit /b !errorlevel! - python -m pytest test-proj2.py || exit /b !errorlevel! - python -m pytest test-suppress-syntaxError.py || exit /b !errorlevel! - - - name: Test addons - run: | - .\cppcheck --addon=threadsafety addons\test\threadsafety || exit /b !errorlevel! - .\cppcheck --addon=threadsafety --std=c++03 addons\test\threadsafety || exit /b !errorlevel! - .\cppcheck --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 addons\test\misra\misra-ctu-*-test.c || exit /b !errorlevel! - cd addons\test - rem We'll force C89 standard to enable an additional verification for - rem rules 5.4 and 5.5 which have standard-dependent options. - ..\..\cppcheck --dump -DDUMMY --suppress=uninitvar --inline-suppr misra\misra-test.c --std=c89 --platform=unix64 || exit /b !errorlevel! - python3 ..\misra.py -verify misra\misra-test.c.dump || exit /b !errorlevel! - rem TODO: do we need to verify something here? - ..\..\cppcheck --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra\misra-test.h || exit /b !errorlevel! - ..\..\cppcheck --dump misra\misra-test.cpp || exit /b !errorlevel! - python3 ..\misra.py -verify misra\misra-test.cpp.dump || exit /b !errorlevel! - python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_ascii.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! - python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_utf8.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! - python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_windows1250.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! - ..\..\cppcheck --addon=misra --enable=style --platform=avr8 --error-exitcode=1 misra\misra-test-avr8.c || exit /b !errorlevel! - ..\..\cppcheck --dump misc-test.cpp || exit /b !errorlevel! - python3 ..\misc.py -verify misc-test.cpp.dump || exit /b !errorlevel! - ..\..\cppcheck --dump naming_test.c || exit /b !errorlevel! - rem TODO: fix this - does not fail on Linux - rem python3 ..\naming.py --var='[a-z].*' --function='[a-z].*' naming_test.c.dump || exit /b !errorlevel! - ..\..\cppcheck --dump naming_test.cpp || exit /b !errorlevel! - python3 ..\naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump || exit /b !errorlevel! - ..\..\cppcheck --dump namingng_test.c || exit /b !errorlevel! - python3 ..\namingng.py --configfile ..\naming.json --verify namingng_test.c.dump || exit /b !errorlevel! - diff --git a/.github/workflows/asan.yml b/.github/workflows/asan.yml deleted file mode 100644 index df2cb0534d4..00000000000 --- a/.github/workflows/asan.yml +++ /dev/null @@ -1,90 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: address sanitizer - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - env: - QT_VERSION: 5.15.2 - ASAN_OPTIONS: detect_stack_use_after_return=1 - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: '3.11' - check-latest: true - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev - - - name: Install clang - run: | - wget https://apt.llvm.org/llvm.sh - chmod +x llvm.sh - sudo ./llvm.sh 16 - - - name: Install Qt ${{ env.QT_VERSION }} - if: false - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - cache: true - - - name: CMake - run: | - cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=Off -DWITH_QCHART=Off -DUSE_MATCHCOMPILER=Verify -DANALYZE_ADDRESS=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=Off -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - env: - CC: clang-16 - CXX: clang++-16 - - - name: Build cppcheck - run: | - cmake --build cmake.output --target cppcheck -- -j $(nproc) - - - name: Build test - run: | - cmake --build cmake.output --target testrunner -- -j $(nproc) - - - name: Run tests - run: ./cmake.output/bin/testrunner - - - name: Generate dependencies - if: false - run: | - # make sure auto-generated GUI files exist - make -C cmake.output autogen - make -C cmake.output gui-build-deps triage-build-ui-deps - - # TODO: this is currently way too slow (~60 minutes) to enable it - # TODO: only fail the step on sanitizer issues - since we use processes it will only fail the underlying process which will result in an cppcheckError - - name: Self check - if: false - run: | - selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" - ec=0 - ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json cli lib || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 - exit $ec diff --git a/.github/workflows/buildman.yml b/.github/workflows/buildman.yml deleted file mode 100644 index 4bbdf779661..00000000000 --- a/.github/workflows/buildman.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Build manual - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - convert_via_pandoc: - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - - - run: | - mkdir output - - - uses: docker://pandoc/latex:2.9 - with: - args: --output=output/manual.html man/manual.md - - - uses: docker://pandoc/latex:2.9 - with: - args: --output=output/manual.pdf man/manual.md - - - uses: actions/upload-artifact@v3 - with: - name: output - path: output diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml deleted file mode 100644 index 19c40de61c9..00000000000 --- a/.github/workflows/cifuzz.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: CIFuzz -on: [pull_request] -jobs: - Fuzzing: - runs-on: ubuntu-latest - steps: - - name: Build Fuzzers - id: build - uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master - with: - oss-fuzz-project-name: 'cppcheck' - dry-run: false - language: c++ - - name: Run Fuzzers - uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master - with: - oss-fuzz-project-name: 'cppcheck' - fuzz-seconds: 300 - dry-run: false - language: c++ - - name: Upload Crash - uses: actions/upload-artifact@v3 - if: failure() && steps.build.outcome == 'success' - with: - name: artifacts - path: ./out/artifacts diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 12d15855527..00000000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: "CodeQL" - -on: [push, pull_request] - -permissions: - contents: read - security-events: write - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-22.04 - - strategy: - fail-fast: false - matrix: - # Override automatic language detection by changing the below list - # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] - language: ['cpp', 'python'] - # Learn more... - # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install libxml2-utils - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - setup-python-dependencies: false - - - run: | - make -j$(nproc) HAVE_RULES=yes cppcheck - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index b07c15811cd..00000000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,61 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: Coverage - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ runner.os }} - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install libxml2-utils lcov - - - name: Install missing Python packages on ubuntu - run: | - python -m pip install pip --upgrade - python -m pip install lcov_cobertura - - - name: Compile instrumented - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) all CXXFLAGS="-g -fprofile-arcs -ftest-coverage" HAVE_RULES=yes - - - name: Run instrumented tests - run: | - ./testrunner - test/cfg/runtests.sh - - - name: Generate coverage report - run: | - gcov lib/*.cpp -o lib/ - lcov --directory ./ --capture --output-file lcov_tmp.info -b ./ - lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info - genhtml lcov.info -o coverage_report --frame --legend --demangle-cpp - - - uses: actions/upload-artifact@v3 - with: - name: Coverage results - path: coverage_report - - - uses: codecov/codecov-action@v3 - with: - # token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos - # file: ./coverage.xml # optional - flags: unittests # optional - name: ${{ github.repository }} # optional - fail_ci_if_error: true # optional (default = false): diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml deleted file mode 100644 index ff3134b7ed5..00000000000 --- a/.github/workflows/format.yml +++ /dev/null @@ -1,40 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: format - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v3 - - - name: Cache uncrustify - uses: actions/cache@v3 - id: cache-uncrustify - with: - path: | - ~/uncrustify - key: ${{ runner.os }}-uncrustify - - - name: build uncrustify - if: steps.cache-uncrustify.outputs.cache-hit != 'true' - run: | - wget https://github.com/uncrustify/uncrustify/archive/refs/tags/uncrustify-0.72.0.tar.gz - tar xzvf uncrustify-0.72.0.tar.gz && cd uncrustify-uncrustify-0.72.0 - cmake -S . -B build -DCMAKE_BUILD_TYPE=Release - cmake --build build -- -j$(nproc) -s - mkdir ~/uncrustify - cd build && cp uncrustify ~/uncrustify/ - - - name: Uncrustify check - run: | - ~/uncrustify/uncrustify -c .uncrustify.cfg -l CPP --no-backup --replace */*.cpp */*.h - git diff - git diff | diff - /dev/null &> /dev/null diff --git a/.github/workflows/iwyu.yml b/.github/workflows/iwyu.yml deleted file mode 100644 index 01c705b9da5..00000000000 --- a/.github/workflows/iwyu.yml +++ /dev/null @@ -1,149 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: include-what-you-use - -on: workflow_dispatch - -permissions: - contents: read - -jobs: - iwyu: - - runs-on: ubuntu-22.04 - - container: - image: "archlinux:latest" - - steps: - - uses: actions/checkout@v3 - - # TODO: the necessary packages are excessive - mostly because of Qt - use a pre-built image - - name: Install missing software on debian/ubuntu - if: false - run: | - apt-get update - apt-get install -y cmake g++ make libpcre3-dev - apt-get install -y qtbase5-dev qttools5-dev libqt5charts5-dev - apt-get install -y wget iwyu - ln -s ../x86_64-linux-gnu/qt5 /usr/include/qt - - - name: Install missing software on archlinux - run: | - set -x - pacman -Sy - pacman -S cmake make gcc qt5-base qt5-tools qt5-charts pcre wget --noconfirm - pacman-key --init - pacman-key --recv-key FBA220DFC880C036 --keyserver keyserver.ubuntu.com - pacman-key --lsign-key FBA220DFC880C036 - pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' --noconfirm - echo "[chaotic-aur]" >> /etc/pacman.conf - echo "Include = /etc/pacman.d/chaotic-mirrorlist" >> /etc/pacman.conf - pacman -Sy - pacman -S include-what-you-use --noconfirm - ln -s iwyu-tool /usr/sbin/iwyu_tool - - - name: Prepare CMake - run: | - cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCPPCHK_GLIBCXX_DEBUG=Off -DUSE_MATCHCOMPILER=Off - - - name: Prepare CMake dependencies - run: | - # make sure the precompiled headers exist - #make -C cmake.output/cli cmake_pch.hxx.pch - #make -C cmake.output/gui cmake_pch.hxx.pch - #make -C cmake.output/lib cmake_pch.hxx.pch - #make -C cmake.output/test cmake_pch.hxx.pch - # make sure the auto-generated GUI sources exist - make -C cmake.output autogen - # make sure the auto-generated GUI dependencies exist - make -C cmake.output gui-build-deps - make -C cmake.output triage-build-ui-deps - - - name: Build Qt mappings - run: | - wget https://raw.githubusercontent.com/include-what-you-use/include-what-you-use/master/mapgen/iwyu-mapgen-qt.py - python3 iwyu-mapgen-qt.py /usr/include/qt/ > qt5.imp - - - name: iwyu_tool - run: | - PWD=$(pwd) - iwyu_tool -p cmake.output -j $(nproc) -- -w -Xiwyu --mapping_file=$PWD/qt5.imp > iwyu.log - - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: Compilation Database - path: ./cmake.output/compile_commands.json - - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: Qt Mappings - path: ./qt5.imp - - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: Logs (include-what-you-use) - path: ./*.log - - clang-include-cleaner: - - runs-on: ubuntu-22.04 - - env: - QT_VERSION: 5.15.2 - - steps: - - uses: actions/checkout@v3 - - - name: Install missing software - run: | - sudo apt-get update - sudo apt-get install -y cmake make - sudo apt-get install -y libpcre3-dev - sudo apt-get install -y libffi7 # work around missing dependency for Qt install step - - - name: Install clang - run: | - wget https://apt.llvm.org/llvm.sh - chmod +x llvm.sh - sudo ./llvm.sh 17 - sudo apt-get install -y clang-tools-17 - - - name: Install Qt ${{ env.QT_VERSION }} - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - cache: true - - - name: Prepare CMake - run: | - cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCPPCHK_GLIBCXX_DEBUG=Off -DUSE_MATCHCOMPILER=Off - env: - CC: clang-17 - CXX: clang++-17 - - - name: Prepare CMake dependencies - run: | - # make sure the precompiled headers exist - #make -C cmake.output/cli cmake_pch.hxx.pch - #make -C cmake.output/gui cmake_pch.hxx.pch - #make -C cmake.output/lib cmake_pch.hxx.pch - #make -C cmake.output/test cmake_pch.hxx.pch - # make sure the auto-generated GUI sources exist - make -C cmake.output autogen - # make sure the auto-generated GUI dependencies exist - make -C cmake.output gui-build-deps - - - name: clang-include-cleaner - run: | - # TODO: run multi-threaded - find $PWD/cli $PWD/lib $PWD/test -maxdepth 1 -name "*.cpp" | xargs -t -n 1 clang-include-cleaner-17 --print=changes --extra-arg=-w -p cmake.output > clang-include-cleaner.log 2>&1 - - - uses: actions/upload-artifact@v3 - with: - name: Logs (clang-include-cleaner) - path: ./*.log \ No newline at end of file diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml deleted file mode 100644 index ab6836c9559..00000000000 --- a/.github/workflows/release-windows.yml +++ /dev/null @@ -1,145 +0,0 @@ -# Some convenient links: -# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md -# - -name: release-windows - -on: - push: - tags: - - '2.*' - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - -permissions: - contents: read - -defaults: - run: - shell: cmd - -jobs: - - build: - - runs-on: windows-2022 - - env: - # see https://www.pcre.org/original/changelog.txt - PCRE_VERSION: 8.45 - QT_VERSION: 5.15.2 - - steps: - - uses: actions/checkout@v3 - - - name: Set up Visual Studio environment - uses: ilammy/msvc-dev-cmd@v1 - - - name: Cache PCRE - id: cache-pcre - uses: actions/cache@v3 - with: - path: | - externals\pcre.h - externals\pcre64.lib - key: pcre-${{ env.PCRE_VERSION }}-bin-x64-win-release-job - - - name: Download PCRE - if: steps.cache-pcre.outputs.cache-hit != 'true' - run: | - curl -fsSL https://github.com/pfultz2/pcre/archive/refs/tags/%PCRE_VERSION%.zip -o pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! - - - name: Install PCRE - if: steps.cache-pcre.outputs.cache-hit != 'true' - run: | - 7z x pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! - cd pcre-%PCRE_VERSION% || exit /b !errorlevel! - cmake . -G "Visual Studio 17 2022" -A x64 -DPCRE_BUILD_PCRECPP=OFF -DPCRE_BUILD_PCREGREP=OFF -DPCRE_BUILD_TESTS=OFF || exit /b !errorlevel! - msbuild -m PCRE.sln -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel! - copy pcre.h ..\externals || exit /b !errorlevel! - copy Release\pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel! - - # available modules: https://github.com/miurahr/aqtinstall/blob/master/docs/getting_started.rst#installing-modules - # available tools: https://github.com/miurahr/aqtinstall/blob/master/docs/getting_started.rst#installing-tools - - name: Install Qt ${{ env.QT_VERSION }} - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - tools: 'tools_openssl_x64,qt.tools.openssl.win_x64' - cache: true - - - name: Create .qm - run: | - cd gui || exit /b !errorlevel! - lupdate gui.pro -no-obsolete || exit /b !errorlevel! - lrelease gui.pro -removeidentical || exit /b !errorlevel! - - - name: Matchcompiler - run: python tools\matchcompiler.py --write-dir lib || exit /b !errorlevel! - - - name: Build x64 release GUI - run: | - cd gui || exit /b !errorlevel! - qmake HAVE_QCHART=yes || exit /b !errorlevel! - nmake release || exit /b !errorlevel! - env: - CL: /MP - - - name: Deploy app - run: | - windeployqt Build\gui || exit /b !errorlevel! - del Build\gui\cppcheck-gui.ilk || exit /b !errorlevel! - del Build\gui\cppcheck-gui.pdb || exit /b !errorlevel! - - # TODO: build with boost enabled - - name: Build CLI x64 release configuration using MSBuild - run: msbuild -m cppcheck.sln -t:cli -p:Configuration=Release-PCRE -p:Platform=x64 || exit /b !errorlevel! - - - name: Compile misra.py executable - run: | - pip install -U pyinstaller || exit /b !errorlevel! - cd addons || exit /b !errorlevel! - pyinstaller --hidden-import xml --hidden-import xml.etree --hidden-import xml.etree.ElementTree misra.py || exit /b !errorlevel! - del *.spec || exit /b !errorlevel! - - - name: Collect files - run: | - move Build\gui win_installer\files || exit /b !errorlevel! - mkdir win_installer\files\addons || exit /b !errorlevel! - copy addons\*.* win_installer\files\addons || exit /b !errorlevel! - copy addons\dist\misra\*.* win_installer\files\addons || exit /b !errorlevel! - mkdir win_installer\files\cfg || exit /b !errorlevel! - copy cfg\*.cfg win_installer\files\cfg || exit /b !errorlevel! - :: "platforms" is a folder used by Qt as well so it already exists - :: mkdir win_installer\files\platforms || exit /b !errorlevel! - copy platforms\*.xml win_installer\files\platforms || exit /b !errorlevel! - copy bin\cppcheck.exe win_installer\files || exit /b !errorlevel! - copy bin\cppcheck-core.dll win_installer\files || exit /b !errorlevel! - mkdir win_installer\files\help || exit /b !errorlevel! - xcopy /s gui\help win_installer\files\help || exit /b !errorlevel! - del win_installer\files\translations\*.qm || exit /b !errorlevel! - move gui\*.qm win_installer\files\translations || exit /b !errorlevel! - :: copy libcrypto-1_1-x64.dll and libssl-1_1-x64.dll - copy %RUNNER_WORKSPACE%\Qt\Tools\OpenSSL\Win_x64\bin\lib*.dll win_installer\files || exit /b !errorlevel! - - - name: Build Installer - run: | - cd win_installer || exit /b !errorlevel! - REM Read ProductVersion - for /f "tokens=4 delims= " %%a in ('find "ProductVersion" productInfo.wxi') do set PRODUCTVER=%%a - REM Remove double quotes - set PRODUCTVER=%PRODUCTVER:"=% - echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel! - msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel! - - - uses: actions/upload-artifact@v3 - with: - name: installer - path: win_installer/Build/ - - - uses: actions/upload-artifact@v3 - with: - name: deploy - path: win_installer\files diff --git a/.github/workflows/scriptcheck.yml b/.github/workflows/scriptcheck.yml deleted file mode 100644 index 15495f3cea2..00000000000 --- a/.github/workflows/scriptcheck.yml +++ /dev/null @@ -1,166 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: scriptcheck - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - # 'ubuntu-22.04' removes Python 2.7, 3.6 and 3.6 so keep the previous LTS version - runs-on: ubuntu-20.04 - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ runner.os }} - - - name: Cache Cppcheck - uses: actions/cache@v3 - with: - path: cppcheck - key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }} - - - name: build cppcheck - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - make -j$(nproc) -s - strip -s ./cppcheck - - scriptcheck: - - needs: build - # 'ubuntu-22.04' removes Python 2.7, 3.5 and 3.6 so keep the previous LTS version - runs-on: ubuntu-20.04 - strategy: - matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', '3.11'] - fail-fast: false - - steps: - - uses: actions/checkout@v3 - - - name: Restore Cppcheck - uses: actions/cache@v3 - with: - path: cppcheck - key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }} - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - check-latest: true - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install tidy libxml2-utils - - - name: Install missing software on ubuntu (Python 2) - if: matrix.python-version == '2.7' - run: | - python -m pip install pip --upgrade - python -m pip install pathlib - python -m pip install pytest - python -m pip install pygments - - - name: Install missing software on ubuntu (Python 3) - if: matrix.python-version != '2.7' - run: | - # shellcheck cannot be installed via pip - # ERROR: Could not find a version that satisfies the requirement shellcheck (from versions: none) - # ERROR: No matching distribution found for shellcheck - sudo apt-get install shellcheck - python -m pip install pip --upgrade - python -m pip install natsort - python -m pip install pexpect - python -m pip install pylint - python -m pip install unittest2 - python -m pip install pytest - python -m pip install pygments - python -m pip install requests - python -m pip install psutil - - - name: run Shellcheck - if: matrix.python-version == '3.11' - run: | - find . -name "*.sh" | xargs shellcheck --exclude SC2002,SC2013,SC2034,SC2035,SC2043,SC2046,SC2086,SC2089,SC2090,SC2129,SC2211,SC2231 - - - name: run pylint - if: matrix.python-version == '3.11' - run: | - echo "FIXME pylint is disabled for now because it fails to import files:" - echo "FIXME addons/runaddon.py:1:0: E0401: Unable to import 'cppcheckdata' (import-error)" - echo "FIXME addons/runaddon.py:1:0: E0401: Unable to import 'cppcheck' (import-error)" - # pylint --rcfile=pylintrc_travis --jobs $(nproc) addons/*.py htmlreport/cppcheck-htmlreport htmlreport/*.py tools/*.py - - - name: check .json files - if: matrix.python-version == '3.11' - run: | - find . -name '*.json' | xargs -n 1 python -m json.tool > /dev/null - - - name: Validate - if: matrix.python-version == '3.11' - run: | - make -j$(nproc) validateCFG validatePlatforms validateRules - - - name: check python syntax - if: matrix.python-version != '2.7' - run: | - python -m py_compile addons/*.py - python -m py_compile htmlreport/cppcheck-htmlreport - python -m py_compile htmlreport/*.py - python -m py_compile tools/*.py - - - name: compile addons - run: | - python -m compileall ./addons - - - name: test matchcompiler - run: | - python tools/test_matchcompiler.py - - - name: test addons - run: | - python -m pytest -v addons/test/test-*.py - env: - PYTHONPATH: ./addons - - - name: test htmlreport - run: | - htmlreport/test_htmlreport.py - cd htmlreport - ./check.sh - - - name: test reduce - run: | - python -m pytest -v tools/test_reduce.py - env: - PYTHONPATH: ./tools - - - name: test donate_cpu_lib - if: matrix.python-version != '2.7' - run: | - python -m pytest -v tools/test_donate_cpu_lib.py - env: - PYTHONPATH: ./tools - - - name: test donate_cpu_server - if: matrix.python-version != '2.7' - run: | - python -m pytest -v tools/test_donate_cpu_server.py - env: - PYTHONPATH: ./tools - - - name: dmake - if: matrix.python-version == '3.11' - run: | - make -j$(nproc) run-dmake - git diff --exit-code diff --git a/.github/workflows/selfcheck.yml b/.github/workflows/selfcheck.yml deleted file mode 100644 index 8cd028f9af9..00000000000 --- a/.github/workflows/selfcheck.yml +++ /dev/null @@ -1,128 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: selfcheck - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - env: - QT_VERSION: 5.15.2 - - steps: - - uses: actions/checkout@v3 - - - name: Install missing software - run: | - sudo apt-get update - sudo apt-get install libboost-container-dev - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ runner.os }} - - - name: Install missing software - run: | - sudo apt-get update - sudo apt-get install clang-14 valgrind - - - name: Install Qt ${{ env.QT_VERSION }} - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - cache: true - - # TODO: cache this - perform same build as for the other self check - - name: Self check (build) - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - # valgrind cannot handle DWARF 5 yet so force version 4 - # work around performance regression with -inline-deferral - make -j$(nproc) -s CXXFLAGS="-O2 -w -DHAVE_BOOST -gdwarf-4 -mllvm -inline-deferral" MATCHCOMPILER=yes - env: - CC: clang-14 - CXX: clang++-14 - - - name: CMake - run: | - cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On - - - name: Generate dependencies - run: | - # make sure the precompiled headers exist - make -C cmake.output lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx - make -C cmake.output test/CMakeFiles/testrunner.dir/cmake_pch.hxx.cxx - # make sure auto-generated GUI files exist - make -C cmake.output autogen - make -C cmake.output gui-build-deps - - # TODO: find a way to report unmatched suppressions without need to add information checks - - name: Self check (unusedFunction) - if: false # TODO: fails with preprocessorErrorDirective - see #10667 - run: | - ./cppcheck -q --template=selfcheck --error-exitcode=1 --library=cppcheck-lib --library=qt -D__CPPCHECK__ -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr - env: - DISABLE_VALUEFLOW: 1 - UNUSEDFUNCTION_ONLY: 1 - - # the following steps are duplicated from above since setting up the build node in a parallel step takes longer than the actual steps - - name: CMake (no test) - run: | - cmake -S . -B cmake.output.notest -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=Off -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On - - - name: Generate dependencies (no test) - run: | - # make sure the precompiled headers exist - make -C cmake.output.notest lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx - # make sure auto-generated GUI files exist - make -C cmake.output.notest autogen - make -C cmake.output.notest gui-build-deps - - # TODO: find a way to report unmatched suppressions without need to add information checks - - name: Self check (unusedFunction / no test) - run: | - ./cppcheck -q --template=selfcheck --error-exitcode=1 --library=cppcheck-lib --library=qt -D__CPPCHECK__ -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output.notest/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr - env: - DISABLE_VALUEFLOW: 1 - UNUSEDFUNCTION_ONLY: 1 - - - name: Fetch corpus - run: | - wget https://github.com/danmar/cppcheck/archive/refs/tags/2.8.tar.gz - tar xvf 2.8.tar.gz - - - name: CMake (corpus / no test) - run: | - cmake -S cppcheck-2.8 -B cmake.output.corpus -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=Off -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On - - - name: Generate dependencies (corpus) - run: | - # make sure the precompiled headers exist - make -C cmake.output.notest lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx - # make sure auto-generated GUI files exist - make -C cmake.output.corpus autogen - make -C cmake.output.corpus gui-build-deps - - # TODO: find a way to report unmatched suppressions without need to add information checks - - name: Self check (unusedFunction / corpus / no test / callgrind) - run: | - # TODO: fix -rp so the suppressions actually work - valgrind --tool=callgrind ./cppcheck --template=selfcheck --error-exitcode=0 --library=cppcheck-lib --library=qt -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output.corpus/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr 2>callgrind.log || (cat callgrind.log && false) - cat callgrind.log - callgrind_annotate --auto=no > callgrind.annotated.log - head -50 callgrind.annotated.log - env: - DISABLE_VALUEFLOW: 1 - - - uses: actions/upload-artifact@v3 - with: - name: Callgrind Output - path: ./callgrind.* diff --git a/.github/workflows/tsan.yml b/.github/workflows/tsan.yml deleted file mode 100644 index fc3af112481..00000000000 --- a/.github/workflows/tsan.yml +++ /dev/null @@ -1,90 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: thread sanitizer - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - env: - QT_VERSION: 5.15.2 - TSAN_OPTIONS: halt_on_error=1 - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: '3.11' - check-latest: true - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev - - - name: Install clang - run: | - wget https://apt.llvm.org/llvm.sh - chmod +x llvm.sh - sudo ./llvm.sh 16 - - - name: Install Qt ${{ env.QT_VERSION }} - if: false - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - cache: true - - - name: CMake - run: | - cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=Off -DWITH_QCHART=Off -DUSE_MATCHCOMPILER=Verify -DANALYZE_THREAD=On -DUSE_THREADS=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=Off -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - env: - CC: clang-16 - CXX: clang++-16 - - - name: Build cppcheck - run: | - cmake --build cmake.output --target cppcheck -- -j $(nproc) - - - name: Build test - run: | - cmake --build cmake.output --target testrunner -- -j $(nproc) - - - name: Run tests - run: ./cmake.output/bin/testrunner - - - name: Generate dependencies - if: false - run: | - # make sure auto-generated GUI files exist - make -C cmake.output autogen - make -C cmake.output gui-build-deps triage-build-ui-deps - - # TODO: disabled for now as it takes around 40 minutes to finish - # set --error-exitcode=0 so we only fail on sanitizer issues - since it uses threads for execution it will exit the whole process on the first issue - - name: Self check - if: false - run: | - selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=0 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" - ec=0 - ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json -DCHECK_INTERNAL cli lib || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 - exit $ec diff --git a/.github/workflows/ubsan.yml b/.github/workflows/ubsan.yml deleted file mode 100644 index 1de89f66ff5..00000000000 --- a/.github/workflows/ubsan.yml +++ /dev/null @@ -1,86 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: undefined behaviour sanitizers - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - env: - QT_VERSION: 5.15.2 - UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1:report_error_type=1 - # TODO: figure out why there are cache misses with PCH enabled - CCACHE_SLOPPINESS: pch_defines,time_macros - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} - - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: '3.11' - check-latest: true - - - name: Install missing software on ubuntu - run: | - sudo apt-get update - sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev - - - name: Install clang - run: | - wget https://apt.llvm.org/llvm.sh - chmod +x llvm.sh - sudo ./llvm.sh 16 - - - name: Install Qt ${{ env.QT_VERSION }} - uses: jurplel/install-qt-action@v3 - with: - version: ${{ env.QT_VERSION }} - modules: 'qtcharts' - cache: true - - - name: CMake - run: | - cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=ON -DWITH_QCHART=ON -DUSE_MATCHCOMPILER=Verify -DANALYZE_UNDEFINED=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - env: - CC: clang-16 - CXX: clang++-16 - - - name: Build cppcheck - run: | - cmake --build cmake.output --target cppcheck -- -j $(nproc) - - - name: Build test - run: | - cmake --build cmake.output --target testrunner -- -j $(nproc) - - - name: Run tests - run: ./cmake.output/bin/testrunner - - - name: Generate dependencies - run: | - # make sure auto-generated GUI files exist - make -C cmake.output autogen - make -C cmake.output gui-build-deps triage-build-ui-deps - - # TODO: only fail the step on sanitizer issues - since we use processes it will only fail the underlying process which will result in an cppcheckError - - name: Self check - run: | - selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" - ec=0 - ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json cli lib || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 - ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 - exit $ec diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml deleted file mode 100644 index 1753e6f0acd..00000000000 --- a/.github/workflows/valgrind.yml +++ /dev/null @@ -1,54 +0,0 @@ -# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions -# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners -name: valgrind - -on: [push, pull_request] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-22.04 - - steps: - - uses: actions/checkout@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ github.workflow }}-${{ runner.os }} - - - name: Install missing software - run: | - sudo apt-get update - sudo apt-get install libxml2-utils - sudo apt-get install valgrind - sudo apt-get install libboost-container-dev - sudo apt-get install debuginfod - - - name: Build cppcheck - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - CXXFLAGS="-O1 -g -DHAVE_BOOST" make -j$(nproc) HAVE_RULES=yes MATCHCOMPILER=yes - - - name: Build test - run: | - export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" - CXXFLAGS="-O1 -g -DHAVE_BOOST" make -j$(nproc) testrunner HAVE_RULES=yes MATCHCOMPILER=yes - - - name: Run valgrind - run: | - ec=0 - valgrind --error-limit=yes --leak-check=full --num-callers=50 --show-reachable=yes --track-origins=yes --suppressions=valgrind/testrunner.supp --gen-suppressions=all --log-fd=9 --error-exitcode=42 ./testrunner TestGarbage TestOther TestSimplifyTemplate 9>memcheck.log || ec=1 - cat memcheck.log - exit $ec - env: - DEBUGINFOD_URLS: https://debuginfod.ubuntu.com - - - uses: actions/upload-artifact@v3 - if: success() || failure() - with: - name: Logs - path: ./*.log From 5920d39f08e38672274eefbb6c67e4137f72ea84 Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 19 Jun 2023 19:49:33 +0200 Subject: [PATCH 02/15] Enable readability-else-after-return --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 8542591b805..95710ddfbe0 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,5 +1,5 @@ --- -Checks: '*,-abseil-*,-altera-*,-android-*,-boost-*,-cert-*,-cppcoreguidelines-*,-darwin-*,-fuchsia-*,-google-*,-hicpp-*,-linuxkernel-*,-llvm-*,-llvmlibc-*,-mpi-*,-objc-*,-openmp-*,-zircon-*,google-explicit-constructor,-readability-braces-around-statements,-readability-magic-numbers,-bugprone-macro-parentheses,-readability-isolate-declaration,-readability-function-size,-modernize-use-trailing-return-type,-readability-implicit-bool-conversion,-readability-uppercase-literal-suffix,-modernize-use-auto,-readability-else-after-return,-modernize-use-default-member-init,-readability-redundant-member-init,-modernize-avoid-c-arrays,-modernize-use-equals-default,-readability-container-size-empty,-bugprone-branch-clone,-bugprone-narrowing-conversions,-modernize-raw-string-literal,-readability-convert-member-functions-to-static,-modernize-loop-convert,-readability-const-return-type,-modernize-return-braced-init-list,-performance-inefficient-string-concatenation,-misc-throw-by-value-catch-by-reference,-readability-avoid-const-params-in-decls,-misc-non-private-member-variables-in-classes,-clang-analyzer-*,-bugprone-signed-char-misuse,-misc-no-recursion,-readability-use-anyofallof,-performance-no-automatic-move,-readability-function-cognitive-complexity,-readability-redundant-access-specifiers,-concurrency-mt-unsafe,-bugprone-easily-swappable-parameters,-readability-suspicious-call-argument,-readability-identifier-length,-readability-container-data-pointer,-bugprone-assignment-in-if-condition,-misc-const-correctness,-portability-std-allocator-const,-modernize-deprecated-ios-base-aliases,-bugprone-unchecked-optional-access,-modernize-replace-auto-ptr,-readability-identifier-naming,-portability-simd-intrinsics,-misc-use-anonymous-namespace,cert-err34-c' +Checks: '*,-abseil-*,-altera-*,-android-*,-boost-*,-cert-*,-cppcoreguidelines-*,-darwin-*,-fuchsia-*,-google-*,-hicpp-*,-linuxkernel-*,-llvm-*,-llvmlibc-*,-mpi-*,-objc-*,-openmp-*,-zircon-*,google-explicit-constructor,-readability-braces-around-statements,-readability-magic-numbers,-bugprone-macro-parentheses,-readability-isolate-declaration,-readability-function-size,-modernize-use-trailing-return-type,-readability-implicit-bool-conversion,-readability-uppercase-literal-suffix,-modernize-use-auto,-modernize-use-default-member-init,-readability-redundant-member-init,-modernize-avoid-c-arrays,-modernize-use-equals-default,-readability-container-size-empty,-bugprone-branch-clone,-bugprone-narrowing-conversions,-modernize-raw-string-literal,-readability-convert-member-functions-to-static,-modernize-loop-convert,-readability-const-return-type,-modernize-return-braced-init-list,-performance-inefficient-string-concatenation,-misc-throw-by-value-catch-by-reference,-readability-avoid-const-params-in-decls,-misc-non-private-member-variables-in-classes,-clang-analyzer-*,-bugprone-signed-char-misuse,-misc-no-recursion,-readability-use-anyofallof,-performance-no-automatic-move,-readability-function-cognitive-complexity,-readability-redundant-access-specifiers,-concurrency-mt-unsafe,-bugprone-easily-swappable-parameters,-readability-suspicious-call-argument,-readability-identifier-length,-readability-container-data-pointer,-bugprone-assignment-in-if-condition,-misc-const-correctness,-portability-std-allocator-const,-modernize-deprecated-ios-base-aliases,-bugprone-unchecked-optional-access,-modernize-replace-auto-ptr,-readability-identifier-naming,-portability-simd-intrinsics,-misc-use-anonymous-namespace,cert-err34-c' WarningsAsErrors: '*' HeaderFilterRegex: '(cli|gui|lib|oss-fuzz|test|triage)\/[a-z]+\.h' CheckOptions: From 26ca31e065846e99ed5341679a7c007a33765281 Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 19 Jun 2023 20:08:26 +0200 Subject: [PATCH 03/15] Fix readability-else-after-return --- lib/checkautovariables.cpp | 3 +- lib/checkexceptionsafety.cpp | 17 +++++----- lib/checkother.cpp | 42 +++++++++++------------ lib/mathlib.cpp | 65 +++++++++++++++++------------------- lib/settings.cpp | 3 +- lib/symboldatabase.h | 6 ++-- lib/token.h | 2 +- 7 files changed, 64 insertions(+), 74 deletions(-) diff --git a/lib/checkautovariables.cpp b/lib/checkautovariables.cpp index 549053ca0f2..40f93fb9332 100644 --- a/lib/checkautovariables.cpp +++ b/lib/checkautovariables.cpp @@ -553,7 +553,8 @@ void CheckAutoVariables::checkVarLifetimeScope(const Token * start, const Token isInScope(var->nameToken(), tok->scope())) { errorReturnReference(tok, lt.errorPath, lt.inconclusive); break; - } else if (isDeadTemporary(mTokenizer->isCPP(), lt.token, nullptr, &mSettings->library)) { + } + if (isDeadTemporary(mTokenizer->isCPP(), lt.token, nullptr, &mSettings->library)) { errorReturnTempReference(tok, lt.errorPath, lt.inconclusive); break; } diff --git a/lib/checkexceptionsafety.cpp b/lib/checkexceptionsafety.cpp index 26454bafdfd..14b83e0057a 100644 --- a/lib/checkexceptionsafety.cpp +++ b/lib/checkexceptionsafety.cpp @@ -246,19 +246,18 @@ static const Token * functionThrowsRecursive(const Function * function, std::set tok != function->functionScope->bodyEnd; tok = tok->next()) { if (Token::simpleMatch(tok, "try {")) tok = tok->linkAt(1); // skip till start of catch clauses - if (tok->str() == "throw") { + if (tok->str() == "throw") return tok; - } else if (tok->function()) { + if (tok->function()) { const Function * called = tok->function(); // check if called function has an exception specification - if (called->isThrow() && called->throwArg) { + if (called->isThrow() && called->throwArg) return tok; - } else if (called->isNoExcept() && called->noexceptArg && - called->noexceptArg->str() != "true") { + if (called->isNoExcept() && called->noexceptArg && + called->noexceptArg->str() != "true") return tok; - } else if (functionThrowsRecursive(called, recursive)) { + if (functionThrowsRecursive(called, recursive)) return tok; - } } } @@ -330,9 +329,9 @@ void CheckExceptionSafety::unhandledExceptionSpecification() if (scope->function && !scope->function->isThrow() && !mSettings->library.isentrypoint(scope->className)) { for (const Token *tok = scope->function->functionScope->bodyStart->next(); tok != scope->function->functionScope->bodyEnd; tok = tok->next()) { - if (tok->str() == "try") { + if (tok->str() == "try") break; - } else if (tok->function()) { + if (tok->function()) { const Function * called = tok->function(); // check if called function has an exception specification if (called->isThrow() && called->throwArg) { diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 39a417101ea..9c367720ba4 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -802,9 +802,9 @@ void CheckOther::checkUnreachableCode() if (Token::Match(silencedWarning, "( void ) %name% ;")) { silencedWarning = silencedWarning->tokAt(5); continue; - } else if (silencedWarning && silencedWarning == scope->bodyEnd) + } + if (silencedWarning && silencedWarning == scope->bodyEnd) silencedCompilerWarningOnly = true; - break; } if (silencedWarning) @@ -915,7 +915,8 @@ void CheckOther::checkVariableScope() if (tok->str() == "(") { forHead = true; break; - } else if (Token::Match(tok, "[;{}]")) + } + if (Token::Match(tok, "[;{}]")) break; } if (forHead) @@ -1286,8 +1287,7 @@ static bool canBeConst(const Variable *var, const Settings* settings) const Function* func = tok2->tokAt(2)->function(); if (func && (func->isConst() || func->isStatic())) continue; - else - return false; + return false; } else if (isConstRangeBasedFor(tok2)) continue; else @@ -1395,10 +1395,8 @@ static bool isVariableMutableInInitializer(const Token* start, const Token * end if (memberVar->isConst()) continue; } - return true; - } else { - return true; } + return true; } return false; } @@ -1630,11 +1628,11 @@ void CheckOther::checkConstPointer() int argn = -1; if (Token::Match(parent, "%oror%|%comp%|&&|?|!|-")) continue; - else if (Token::simpleMatch(parent, "(") && Token::Match(parent->astOperand1(), "if|while")) + if (Token::simpleMatch(parent, "(") && Token::Match(parent->astOperand1(), "if|while")) continue; - else if (Token::simpleMatch(parent, "=") && parent->astOperand1() == tok) + if (Token::simpleMatch(parent, "=") && parent->astOperand1() == tok) continue; - else if (const Token* ftok = getTokenArgumentFunction(tok, argn)) { + if (const Token* ftok = getTokenArgumentFunction(tok, argn)) { if (ftok->function() && !parent->isCast()) { const Variable* argVar = ftok->function()->getArgumentVar(argn); if (argVar && argVar->valueType() && argVar->valueType()->isConst(vt->pointer)) { @@ -1863,22 +1861,21 @@ static bool isConstStatement(const Token *tok, bool cpp) return false; return isWithoutSideEffects(cpp, tok) && isConstStatement(tok->astOperand2(), cpp); } - else if (tok->isCast() && tok->next() && tok->next()->isStandardType()) + if (tok->isCast() && tok->next() && tok->next()->isStandardType()) return isWithoutSideEffects(cpp, tok->astOperand1()) && isConstStatement(tok->astOperand1(), cpp); if (Token::simpleMatch(tok, ".")) return isConstStatement(tok->astOperand2(), cpp); if (Token::simpleMatch(tok, ",")) { if (tok->astParent()) // warn about const statement on rhs at the top level return isConstStatement(tok->astOperand1(), cpp) && isConstStatement(tok->astOperand2(), cpp); - else { - const Token* lml = previousBeforeAstLeftmostLeaf(tok); // don't warn about matrix/vector assignment (e.g. Eigen) - if (lml) - lml = lml->next(); - const Token* stream = lml; - while (stream && Token::Match(stream->astParent(), ".|[|(|*")) - stream = stream->astParent(); - return (!stream || !isLikelyStream(cpp, stream)) && isConstStatement(tok->astOperand2(), cpp); - } + + const Token* lml = previousBeforeAstLeftmostLeaf(tok); // don't warn about matrix/vector assignment (e.g. Eigen) + if (lml) + lml = lml->next(); + const Token* stream = lml; + while (stream && Token::Match(stream->astParent(), ".|[|(|*")) + stream = stream->astParent(); + return (!stream || !isLikelyStream(cpp, stream)) && isConstStatement(tok->astOperand2(), cpp); } if (Token::simpleMatch(tok, "?") && Token::simpleMatch(tok->astOperand2(), ":")) // ternary operator return isConstStatement(tok->astOperand1(), cpp) && isConstStatement(tok->astOperand2()->astOperand1(), cpp) && isConstStatement(tok->astOperand2()->astOperand2(), cpp); @@ -1916,8 +1913,7 @@ static bool isConstTop(const Token *tok) Token::Match(tok->astTop()->previous(), "for|if (") && Token::simpleMatch(tok->astTop()->astOperand2(), ";")) { if (Token::simpleMatch(tok->astParent()->astParent(), ";")) return tok->astParent()->astOperand2() == tok; - else - return tok->astParent()->astOperand1() == tok; + return tok->astParent()->astOperand1() == tok; } if (Token::simpleMatch(tok, "[")) { const Token* bracTok = tok; diff --git a/lib/mathlib.cpp b/lib/mathlib.cpp index a7a6bd47307..c610d7ca5b6 100644 --- a/lib/mathlib.cpp +++ b/lib/mathlib.cpp @@ -414,10 +414,9 @@ MathLib::bigint MathLib::toLongNumber(const std::string & str) const double doubleval = toDoubleNumber(str); if (doubleval > (double)std::numeric_limits::max()) return std::numeric_limits::max(); - else if (doubleval < (double)std::numeric_limits::min()) + if (doubleval < (double)std::numeric_limits::min()) return std::numeric_limits::min(); - else - return static_cast(doubleval); + return static_cast(doubleval); } if (isCharLiteral(str)) @@ -463,14 +462,12 @@ static double myStod(const std::string& str, std::string::const_iterator from, s auto digitval = [&](char c) { if ((10 < base) && (c > '9')) return 10 + std::tolower(c) - 'a'; - else - return c - '0'; + return c - '0'; }; for (; it!=to; ++it) { if ('.' == *it) continue; - else - --distance; + --distance; result += digitval(*it)* std::pow(base, distance); } return positivesign ? result : -result; @@ -1036,7 +1033,7 @@ std::string MathLib::getSuffix(const std::string& value) return isUnsigned ? "UL" : "L"; if (longState == 2) return isUnsigned ? "ULL" : "LL"; - else return ""; + return ""; } static std::string intsuffix(const std::string & first, const std::string & second) @@ -1117,7 +1114,8 @@ std::string MathLib::divide(const std::string &first, const std::string &second) if (a == std::numeric_limits::min() && std::abs(b)<=1) throw InternalError(nullptr, "Internal Error: Division overflow"); return toString(toLongNumber(first) / b) + intsuffix(first, second); - } else if (isNullValue(second)) { + } + if (isNullValue(second)) { if (isNullValue(first)) return "nan.0"; return isPositive(first) == isPositive(second) ? "inf.0" : "-inf.0"; @@ -1287,32 +1285,31 @@ bool MathLib::isDigitSeparator(const std::string& iCode, std::string::size_type return true; // Only xdigits before ' --i; } - if (i == iPos - 1) { // No xdigit before ' + if (i == iPos - 1) // No xdigit before ' + return false; + + switch (iCode[i]) { + case ' ': + case '.': + case ',': + case 'x': + case '(': + case '{': + case '+': + case '-': + case '*': + case '%': + case '/': + case '&': + case '|': + case '^': + case '~': + case '=': + return true; + case '\'': + return isDigitSeparator(iCode, i); + default: return false; - } else { - switch (iCode[i]) { - case ' ': - case '.': - case ',': - case 'x': - case '(': - case '{': - case '+': - case '-': - case '*': - case '%': - case '/': - case '&': - case '|': - case '^': - case '~': - case '=': - return true; - case '\'': - return isDigitSeparator(iCode, i); - default: - return false; - } } } diff --git a/lib/settings.cpp b/lib/settings.cpp index 84849965575..c49ca23561e 100644 --- a/lib/settings.cpp +++ b/lib/settings.cpp @@ -171,8 +171,7 @@ std::string Settings::parseEnabled(const std::string &str, std::tuple findReturns(const Function* f); const Token* returnDefEnd() const { - if (this->hasTrailingReturnType()) { + if (this->hasTrailingReturnType()) return Token::findmatch(retDef, "{|;"); - } else { - return tokenDef; - } + return tokenDef; } /** diff --git a/lib/token.h b/lib/token.h index da519039faf..3225623d30f 100644 --- a/lib/token.h +++ b/lib/token.h @@ -1411,7 +1411,7 @@ class CPPCHECKLIB Token { return nullptr; if (this == astParent()->astOperand1()) return astParent()->astOperand2(); - else if (this == astParent()->astOperand2()) + if (this == astParent()->astOperand2()) return astParent()->astOperand1(); return nullptr; From d44ae9bbdddd377f62f1d687f58945f6a8830774 Mon Sep 17 00:00:00 2001 From: chrchr Date: Mon, 19 Jun 2023 20:25:46 +0200 Subject: [PATCH 04/15] Fix readability-else-after-return --- cli/processexecutor.cpp | 3 +- gui/xmlreport.cpp | 4 +- lib/astutils.cpp | 81 +++++++++++++++++++----------------- lib/checkbufferoverrun.cpp | 3 +- lib/checkinternal.cpp | 2 +- lib/checkio.cpp | 39 +++++++++-------- lib/checknullpointer.cpp | 5 +-- lib/checkunusedfunctions.cpp | 3 +- lib/checkunusedvar.cpp | 3 +- lib/clangimport.cpp | 6 ++- lib/token.h | 2 +- 11 files changed, 81 insertions(+), 70 deletions(-) diff --git a/cli/processexecutor.cpp b/cli/processexecutor.cpp index 0965fca2104..005cc0aa29b 100644 --- a/cli/processexecutor.cpp +++ b/cli/processexecutor.cpp @@ -218,7 +218,8 @@ bool ProcessExecutor::checkLoadAverage(size_t nchildren) if (getloadavg(&sample, 1) != 1) { // disable load average checking on getloadavg error return true; - } else if (sample < mSettings.loadAverage) { + } + if (sample < mSettings.loadAverage) { return true; } return false; diff --git a/gui/xmlreport.cpp b/gui/xmlreport.cpp index e36cfa2ee07..0a6234bf123 100644 --- a/gui/xmlreport.cpp +++ b/gui/xmlreport.cpp @@ -75,8 +75,8 @@ int XmlReport::determineVersion(const QString &filename) if (attribs.hasAttribute(QString(VersionAttribute))) { const int ver = attribs.value(QString(), VersionAttribute).toString().toInt(); return ver; - } else - return 1; + } + return 1; } break; diff --git a/lib/astutils.cpp b/lib/astutils.cpp index 20305a7d3f8..44b25cafb51 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -80,11 +80,10 @@ static int findArgumentPosRecursive(const Token* tok, const Token* tokToFind, b if (res == -1) return -1; return argn + res; - } else { - if (tokToFind == tok) - found = true; - return 1; } + if (tokToFind == tok) + found = true; + return 1; } static int findArgumentPos(const Token* tok, const Token* tokToFind){ @@ -142,8 +141,7 @@ nonneg int astCount(const Token* tok, const char* op, int depth) return 0; if (tok->str() == op) return astCount(tok->astOperand1(), op, depth) + astCount(tok->astOperand2(), op, depth); - else - return 1; + return 1; } bool astHasToken(const Token* root, const Token * tok) @@ -439,16 +437,15 @@ bool isTemporary(bool cpp, const Token* tok, const Library* library, bool unknow ftok = tok->previous(); if (!ftok) return false; - if (const Function * f = ftok->function()) { + if (const Function * f = ftok->function()) return !Function::returnsReference(f, true); - } else if (ftok->type()) { + if (ftok->type()) return true; - } else if (library) { + if (library) { std::string returnType = library->returnValueType(ftok); return !returnType.empty() && returnType.back() != '&'; - } else { - return unknown; } + return unknown; } if (tok->isCast()) return false; @@ -621,11 +618,9 @@ const Token* getParentLifetime(bool cpp, const Token* tok, const Library* librar // Find the first local variable or temporary auto it = std::find_if(members.crbegin(), members.crend(), [&](const Token* tok2) { const Variable* var = tok2->variable(); - if (var) { + if (var) return var->isLocal() || var->isArgument(); - } else { - return isTemporary(cpp, tok2, library); - } + return isTemporary(cpp, tok2, library); }); if (it == members.rend()) return tok; @@ -688,7 +683,8 @@ std::vector getParentValueTypes(const Token* tok, const Settings* set if (tok->astParent()->astOperand1()->valueType()) return {*tok->astParent()->astOperand1()->valueType()}; return {}; - } else if (Token::Match(tok->astParent(), "(|{|,")) { + } + if (Token::Match(tok->astParent(), "(|{|,")) { int argn = -1; const Token* ftok = getTokenArgumentFunction(tok, argn); const Token* typeTok = nullptr; @@ -708,7 +704,8 @@ std::vector getParentValueTypes(const Token* tok, const Settings* set *parent = nameTok; } return result; - } else if (const Type* t = Token::typeOf(ftok, &typeTok)) { + } + if (const Type* t = Token::typeOf(ftok, &typeTok)) { if (astIsPointer(typeTok)) return {*typeTok->valueType()}; const Scope* scope = t->classScope; @@ -790,11 +787,10 @@ static T* getCondTokFromEndImpl(T* endBlock) T* startBlock = endBlock->link(); if (!Token::simpleMatch(startBlock, "{")) return nullptr; - if (Token::simpleMatch(startBlock->previous(), ")")) { + if (Token::simpleMatch(startBlock->previous(), ")")) return getCondTok(startBlock->previous()->link()); - } else if (Token::simpleMatch(startBlock->tokAt(-2), "} else {")) { + if (Token::simpleMatch(startBlock->tokAt(-2), "} else {")) return getCondTokFromEnd(startBlock->tokAt(-2)); - } return nullptr; } @@ -1058,7 +1054,8 @@ bool exprDependsOnThis(const Token* expr, bool onVar, nonneg int depth) if (classScope && classScope->isClassOrStruct()) return contains(classScope->findAssociatedScopes(), expr->function()->nestedIn); return false; - } else if (onVar && expr->variable()) { + } + if (onVar && expr->variable()) { const Variable* var = expr->variable(); return ((var->isPrivate() || var->isPublic() || var->isProtected()) && !var->isStatic()); } @@ -1186,7 +1183,8 @@ SmallVector followAllReferences(const Token* tok, if (var->nameToken() == tok || isStructuredBindingVariable(var)) { refs_result.push_back({tok, std::move(errors)}); return refs_result; - } else if (var->isReference() || var->isRValueReference()) { + } + if (var->isReference() || var->isRValueReference()) { const Token * const varDeclEndToken = var->declEndToken(); if (!varDeclEndToken) { refs_result.push_back({tok, std::move(errors)}); @@ -1196,7 +1194,8 @@ SmallVector followAllReferences(const Token* tok, errors.emplace_back(varDeclEndToken, "Passed to reference."); refs_result.push_back({tok, std::move(errors)}); return refs_result; - } else if (Token::simpleMatch(varDeclEndToken, "=")) { + } + if (Token::simpleMatch(varDeclEndToken, "=")) { if (astHasToken(varDeclEndToken, tok)) return refs_result; errors.emplace_back(varDeclEndToken, "Assigned to reference."); @@ -1826,7 +1825,7 @@ bool isOppositeCond(bool isNot, bool cpp, const Token * const cond1, const Token if (op1 == "<" || op1 == "<=") return (op2 == "==" || op2 == ">" || op2 == ">=") && (rhsValue1.intvalue < rhsValue2.intvalue); - else if (op1 == ">=" || op1 == ">") + if (op1 == ">=" || op1 == ">") return (op2 == "==" || op2 == "<" || op2 == "<=") && (rhsValue1.intvalue > rhsValue2.intvalue); return false; @@ -1903,9 +1902,9 @@ bool isConstFunctionCall(const Token* ftok, const Library& library) return true; } return false; - } else if (f->argumentList.empty()) { - return f->isConstexpr(); } + if (f->argumentList.empty()) + return f->isConstexpr(); } else if (Token::Match(ftok->previous(), ". %name% (") && ftok->previous()->originalName() != "->" && astIsSmartPointer(ftok->previous()->astOperand1())) { return Token::Match(ftok, "get|get_deleter ( )"); @@ -2040,8 +2039,7 @@ static bool isEscaped(const Token* tok, bool functionsScope, const Library* libr return true; if (functionsScope) return Token::simpleMatch(tok, "throw"); - else - return Token::Match(tok, "return|throw"); + return Token::Match(tok, "return|throw"); } static bool isEscapedOrJump(const Token* tok, bool functionsScope, const Library* library) @@ -2050,8 +2048,7 @@ static bool isEscapedOrJump(const Token* tok, bool functionsScope, const Library return true; if (functionsScope) return Token::simpleMatch(tok, "throw"); - else - return Token::Match(tok, "return|goto|throw|continue|break"); + return Token::Match(tok, "return|goto|throw|continue|break"); } bool isEscapeFunction(const Token* ftok, const Library* library) @@ -2093,7 +2090,8 @@ static bool hasNoreturnFunction(const Token* tok, const Library* library, const if (unknownFunc && !function && library && library->functions.count(library->getFunctionName(ftok)) == 0) *unknownFunc = ftok; return false; - } else if (tok->isConstOp()) { + } + if (tok->isConstOp()) { return hasNoreturnFunction(tok->astOperand1(), library, unknownFunc) || hasNoreturnFunction(tok->astOperand2(), library, unknownFunc); } @@ -2273,8 +2271,7 @@ std::vector getArgumentVars(const Token* tok, int argnr) const Variable* argvar = tok->function()->getArgumentVar(argnr); if (argvar) return {argvar}; - else - return result; + return result; } if (tok->variable() || Token::simpleMatch(tok, "{") || Token::Match(tok->previous(), "%type% (|{")) { const Type* type = Token::typeOf(tok); @@ -2518,13 +2515,15 @@ bool isVariableChanged(const Token *tok, int indirect, const Settings *settings, // If accessing element check if the element is changed if (contains({Library::Container::Yield::ITEM, Library::Container::Yield::AT_INDEX}, yield)) { return isVariableChanged(ftok->next(), indirect, settings, cpp, depth - 1); - } else if (contains({Library::Container::Yield::BUFFER, + } + if (contains({Library::Container::Yield::BUFFER, Library::Container::Yield::BUFFER_NT, Library::Container::Yield::START_ITERATOR, Library::Container::Yield::ITERATOR}, yield)) { return isVariableChanged(ftok->next(), indirect + 1, settings, cpp, depth - 1); - } else if (contains({Library::Container::Yield::SIZE, + } + if (contains({Library::Container::Yield::SIZE, Library::Container::Yield::EMPTY, Library::Container::Yield::END_ITERATOR}, yield)) { @@ -2779,7 +2778,8 @@ bool isThisChanged(const Token* tok, int indirect, const Settings* settings, boo Token::Match(tok->tokAt(-3), "this . %name% (")) { if (tok->previous()->function()) { return (!tok->previous()->function()->isConst() && !tok->previous()->function()->isStatic()); - } else if (!tok->previous()->isKeyword()) { + } + if (!tok->previous()->isKeyword()) { return true; } } @@ -3262,17 +3262,20 @@ bool isGlobalData(const Token *expr, bool cpp) // TODO check if pointer points at local data globalData = true; return ChildrenToVisit::none; - } else if (Token::Match(tok, "[*[]") && tok->astOperand1() && tok->astOperand1()->variable()) { + } + if (Token::Match(tok, "[*[]") && tok->astOperand1() && tok->astOperand1()->variable()) { // TODO check if pointer points at local data const Variable *lhsvar = tok->astOperand1()->variable(); const ValueType *lhstype = tok->astOperand1()->valueType(); if (lhsvar->isPointer()) { globalData = true; return ChildrenToVisit::none; - } else if (lhsvar->isArgument() && lhsvar->isArray()) { + } + if (lhsvar->isArgument() && lhsvar->isArray()) { globalData = true; return ChildrenToVisit::none; - } else if (lhsvar->isArgument() && (!lhstype || (lhstype->type <= ValueType::Type::VOID && !lhstype->container))) { + } + if (lhsvar->isArgument() && (!lhstype || (lhstype->type <= ValueType::Type::VOID && !lhstype->container))) { globalData = true; return ChildrenToVisit::none; } diff --git a/lib/checkbufferoverrun.cpp b/lib/checkbufferoverrun.cpp index ce3f69d73f6..d0dbe95dacf 100644 --- a/lib/checkbufferoverrun.cpp +++ b/lib/checkbufferoverrun.cpp @@ -1074,8 +1074,7 @@ void CheckBufferOverrun::objectIndex() if (std::any_of(idxValues.cbegin(), idxValues.cend(), [&](const ValueFlow::Value& vidx) { if (vidx.isImpossible()) return (vidx.intvalue == 0); - else - return (vidx.intvalue != 0); + return (vidx.intvalue != 0); })) { objectIndexError(tok, &v, idx->hasKnownIntValue()); } diff --git a/lib/checkinternal.cpp b/lib/checkinternal.cpp index 4c2160467ff..21405b2f0ef 100644 --- a/lib/checkinternal.cpp +++ b/lib/checkinternal.cpp @@ -62,7 +62,7 @@ void CheckInternal::checkTokenMatchPatterns() // Check for signs of complex patterns if (pattern.find_first_of("[|") != std::string::npos) continue; - else if (pattern.find("!!") != std::string::npos) + if (pattern.find("!!") != std::string::npos) continue; bool complex = false; diff --git a/lib/checkio.cpp b/lib/checkio.cpp index c93820d3140..ba6e9696123 100644 --- a/lib/checkio.cpp +++ b/lib/checkio.cpp @@ -97,9 +97,9 @@ static OpenMode getMode(const std::string& str) { if (str.find('+', 1) != std::string::npos) return OpenMode::RW_MODE; - else if (str.find('w') != std::string::npos || str.find('a') != std::string::npos) + if (str.find('w') != std::string::npos || str.find('a') != std::string::npos) return OpenMode::WRITE_MODE; - else if (str.find('r') != std::string::npos) + if (str.find('r') != std::string::npos) return OpenMode::READ_MODE; return OpenMode::UNKNOWN_OM; } @@ -488,13 +488,14 @@ static bool findFormat(nonneg int arg, const Token *firstArg, *formatArgTok = argTok->nextArgument(); *formatStringTok = argTok; return true; - } else if (Token::Match(argTok, "%var% [,)]") && - argTok->variable() && - Token::Match(argTok->variable()->typeStartToken(), "char|wchar_t") && - (argTok->variable()->isPointer() || - (argTok->variable()->dimensions().size() == 1 && - argTok->variable()->dimensionKnown(0) && - argTok->variable()->dimension(0) != 0))) { + } + if (Token::Match(argTok, "%var% [,)]") && + argTok->variable() && + Token::Match(argTok->variable()->typeStartToken(), "char|wchar_t") && + (argTok->variable()->isPointer() || + (argTok->variable()->dimensions().size() == 1 && + argTok->variable()->dimensionKnown(0) && + argTok->variable()->dimension(0) != 0))) { *formatArgTok = argTok->nextArgument(); if (!argTok->values().empty()) { const std::list::const_iterator value = std::find_if( @@ -1402,11 +1403,12 @@ CheckIO::ArgumentInfo::ArgumentInfo(const Token * arg, const Settings *settings, if (arg->tokType() == Token::eString) { typeToken = arg; return; - } else if (arg->str() == "&" || arg->tokType() == Token::eVariable || - arg->tokType() == Token::eFunction || Token::Match(arg, "%type% ::") || - (Token::Match(arg, "static_cast|reinterpret_cast|const_cast <") && - Token::simpleMatch(arg->linkAt(1), "> (") && - Token::Match(arg->linkAt(1)->linkAt(1), ") ,|)"))) { + } + if (arg->str() == "&" || arg->tokType() == Token::eVariable || + arg->tokType() == Token::eFunction || Token::Match(arg, "%type% ::") || + (Token::Match(arg, "static_cast|reinterpret_cast|const_cast <") && + Token::simpleMatch(arg->linkAt(1), "> (") && + Token::Match(arg->linkAt(1)->linkAt(1), ") ,|)"))) { if (Token::Match(arg, "static_cast|reinterpret_cast|const_cast")) { typeToken = arg->tokAt(2); while (typeToken->str() == "const" || typeToken->str() == "extern") @@ -1471,7 +1473,8 @@ CheckIO::ArgumentInfo::ArgumentInfo(const Token * arg, const Settings *settings, } else varTok = tok1->previous(); break; - } else if (tok1->str() == "(" || tok1->str() == "{" || tok1->str() == "[") + } + if (tok1->str() == "(" || tok1->str() == "{" || tok1->str() == "[") tok1 = tok1->link(); else if (tok1->link() && tok1->str() == "<") tok1 = tok1->link(); @@ -1578,7 +1581,8 @@ bool CheckIO::ArgumentInfo::isStdVectorOrString() typeToken = variableInfo->typeStartToken()->tokAt(4); _template = true; return true; - } else if (variableInfo->isStlType(stl_string)) { + } + if (variableInfo->isStlType(stl_string)) { tempToken = new Token(); tempToken->fileIndex(variableInfo->typeStartToken()->fileIndex()); tempToken->linenr(variableInfo->typeStartToken()->linenr()); @@ -1588,7 +1592,8 @@ bool CheckIO::ArgumentInfo::isStdVectorOrString() tempToken->str("wchar_t"); typeToken = tempToken; return true; - } else if (variableInfo->type() && !variableInfo->type()->derivedFrom.empty()) { + } + if (variableInfo->type() && !variableInfo->type()->derivedFrom.empty()) { const std::vector& derivedFrom = variableInfo->type()->derivedFrom; for (const Type::BaseInfo & i : derivedFrom) { const Token* nameTok = i.nameTok; diff --git a/lib/checknullpointer.cpp b/lib/checknullpointer.cpp index 2f0ee27426c..42c66bf5149 100644 --- a/lib/checknullpointer.cpp +++ b/lib/checknullpointer.cpp @@ -508,10 +508,9 @@ static std::string arithmeticTypeString(const Token *tok) { if (tok && tok->str()[0] == '-') return "subtraction"; - else if (tok && tok->str()[0] == '+') + if (tok && tok->str()[0] == '+') return "addition"; - else - return "arithmetic"; + return "arithmetic"; } void CheckNullPointer::pointerArithmeticError(const Token* tok, const ValueFlow::Value *value, bool inconclusive) diff --git a/lib/checkunusedfunctions.cpp b/lib/checkunusedfunctions.cpp index f0cb0770b13..d9ca653be7f 100644 --- a/lib/checkunusedfunctions.cpp +++ b/lib/checkunusedfunctions.cpp @@ -444,7 +444,8 @@ void CheckUnusedFunctions::analyseWholeProgram(const Settings &settings, ErrorLo if (std::strcmp(e2->Name(),"functioncall") == 0) { calls.insert(functionName); continue; - } else if (std::strcmp(e2->Name(),"functiondecl") == 0) { + } + if (std::strcmp(e2->Name(),"functiondecl") == 0) { const char* lineNumber = e2->Attribute("lineNumber"); if (lineNumber) decls[functionName] = Location(sourcefile, strToInt(lineNumber)); diff --git a/lib/checkunusedvar.cpp b/lib/checkunusedvar.cpp index bc051b5e656..b15f0175d2f 100644 --- a/lib/checkunusedvar.cpp +++ b/lib/checkunusedvar.cpp @@ -832,7 +832,8 @@ void CheckUnusedVar::checkFunctionVariableUsage_iterateScopes(const Scope* const } else if (var->typeEndToken()->str() == ">") // Be careful with types like std::vector tok = tok->previous(); break; - } else if (Token::Match(tok2, "[;({=]")) + } + if (Token::Match(tok2, "[;({=]")) break; } } diff --git a/lib/clangimport.cpp b/lib/clangimport.cpp index b5d9b8f4180..0c10aba71ec 100644 --- a/lib/clangimport.cpp +++ b/lib/clangimport.cpp @@ -1496,7 +1496,8 @@ Token * clangimport::AstNode::createTokensVarDecl(TokenList *tokenList) eq->astOperand1(vartok1); eq->astOperand2(children.back()->createTokens(tokenList)); return eq; - } else if (mExtTokens.back() == "callinit") { + } + if (mExtTokens.back() == "callinit") { Token *par1 = addtoken(tokenList, "("); par1->astOperand1(vartok1); par1->astOperand2(getChild(0)->createTokens(tokenList)); @@ -1504,7 +1505,8 @@ Token * clangimport::AstNode::createTokensVarDecl(TokenList *tokenList) par1->link(par2); par2->link(par1); return par1; - } else if (mExtTokens.back() == "listinit") { + } + if (mExtTokens.back() == "listinit") { return getChild(0)->createTokens(tokenList); } return vartok1; diff --git a/lib/token.h b/lib/token.h index 3225623d30f..8a88ec54036 100644 --- a/lib/token.h +++ b/lib/token.h @@ -1421,7 +1421,7 @@ class CPPCHECKLIB Token { return nullptr; if (this == astParent()->astOperand1()) return astParent()->astOperand2(); - else if (this == astParent()->astOperand2()) + if (this == astParent()->astOperand2()) return astParent()->astOperand1(); return nullptr; From a11746a5e4b3d49c5abb551be8fa2c7419dd3b16 Mon Sep 17 00:00:00 2001 From: chrchr-github Date: Mon, 19 Jun 2023 22:17:21 +0200 Subject: [PATCH 05/15] Fix readability-else-after-return --- cli/cppcheckexecutor.cpp | 3 +- cli/cppcheckexecutorsig.cpp | 3 +- gui/cppchecklibrarydata.cpp | 6 +- gui/filelist.cpp | 3 +- gui/mainwindow.cpp | 2 +- gui/translationhandler.cpp | 5 +- lib/checkcondition.cpp | 10 +-- lib/checkio.cpp | 28 ++++---- lib/checkleakautovar.cpp | 3 +- lib/checkmemoryleak.cpp | 5 +- lib/checkstl.cpp | 16 ++--- lib/forwardanalyzer.cpp | 5 +- lib/fwdanalysis.cpp | 16 +++-- lib/infer.cpp | 3 +- lib/library.cpp | 58 ++++++++--------- lib/mathlib.cpp | 4 +- lib/path.cpp | 2 +- lib/pathanalysis.cpp | 5 +- lib/reverseanalyzer.cpp | 5 +- lib/tokenlist.cpp | 2 +- .../plistsingle_001_1982654442753025810.plist | 64 +++++++++++++++++++ ...plistsingle_002_10247957141852424771.plist | 64 +++++++++++++++++++ .../plistsingle_003_9890302464338082284.plist | 64 +++++++++++++++++++ ...plistsingle_004_12067882847020172541.plist | 64 +++++++++++++++++++ .../plistsingle_005_5630617244238936838.plist | 64 +++++++++++++++++++ ...plistsingle_006_16962063200094885239.plist | 64 +++++++++++++++++++ .../plistsingle_007_4606220959910279904.plist | 64 +++++++++++++++++++ test/plistsingle_008_580374351944512977.plist | 64 +++++++++++++++++++ .../plistsingle_009_3198758014225338138.plist | 64 +++++++++++++++++++ ...plistsingle_010_16003424265815961552.plist | 64 +++++++++++++++++++ .../plistsingle_011_4269509797141902503.plist | 64 +++++++++++++++++++ .../plistsingle_012_8017175502773619190.plist | 64 +++++++++++++++++++ .../plistsingle_013_2332437477503628077.plist | 64 +++++++++++++++++++ .../plistsingle_014_9319752689436326364.plist | 64 +++++++++++++++++++ ...plistsingle_015_15757264582822281331.plist | 64 +++++++++++++++++++ ...plistsingle_016_10449069917159320642.plist | 64 +++++++++++++++++++ ...plistsingle_017_16886581810545275609.plist | 64 +++++++++++++++++++ ...plistsingle_018_17272168241162376792.plist | 64 +++++++++++++++++++ ...plistsingle_019_17475290896456108015.plist | 64 +++++++++++++++++++ ...plistsingle_020_12881590431036913615.plist | 64 +++++++++++++++++++ .../plistsingle_021_6199195307864246328.plist | 64 +++++++++++++++++++ ...plistsingle_022_16972094787750017237.plist | 64 +++++++++++++++++++ ...plistsingle_023_16768972132456286014.plist | 64 +++++++++++++++++++ ...plistsingle_024_15313484845422615067.plist | 64 +++++++++++++++++++ .../plistsingle_025_2551232506378335300.plist | 64 +++++++++++++++++++ .../plistsingle_026_4260846535019004001.plist | 64 +++++++++++++++++++ .../plistsingle_027_3820512020493704554.plist | 64 +++++++++++++++++++ ...plistsingle_028_11451319586617536263.plist | 64 +++++++++++++++++++ .../plistsingle_029_4983091736391934000.plist | 64 +++++++++++++++++++ .../plistsingle_030_6812121053832316718.plist | 64 +++++++++++++++++++ .../plistsingle_031_6925173976536768901.plist | 64 +++++++++++++++++++ .../plistsingle_032_5460443177682812520.plist | 64 +++++++++++++++++++ ...plistsingle_033_18222414041750270271.plist | 64 +++++++++++++++++++ test/plistsingle_034_98050179961959002.plist | 64 +++++++++++++++++++ .../plistsingle_035_3469172525986645265.plist | 64 +++++++++++++++++++ .../plistsingle_036_7892337592068513972.plist | 64 +++++++++++++++++++ ...plistsingle_037_11399061653955082123.plist | 64 +++++++++++++++++++ .../plistsingle_038_8764298648067781446.plist | 64 +++++++++++++++++++ .../plistsingle_039_8967456487733615421.plist | 64 +++++++++++++++++++ ...plistsingle_040_14177229776248449453.plist | 64 +++++++++++++++++++ .../plistsingle_041_1415223727808888950.plist | 64 +++++++++++++++++++ ...plistsingle_042_16114302095886723879.plist | 64 +++++++++++++++++++ .../plistsingle_043_9401472490851231312.plist | 64 +++++++++++++++++++ ...plistsingle_044_10284630035580545369.plist | 64 +++++++++++++++++++ .../plistsingle_045_3847118142194590402.plist | 64 +++++++++++++++++++ .../plistsingle_046_9155312807857551091.plist | 64 +++++++++++++++++++ .../plistsingle_047_2717800914471596124.plist | 64 +++++++++++++++++++ .../plistsingle_048_2943449993522940917.plist | 64 +++++++++++++++++++ ...plistsingle_049_14952682173846537566.plist | 64 +++++++++++++++++++ test/plistsingle_050_164674247843652948.plist | 64 +++++++++++++++++++ .../plistsingle_051_3671398309730221099.plist | 64 +++++++++++++++++++ ...plistsingle_052_10625169558510862202.plist | 64 +++++++++++++++++++ .../plistsingle_053_7761902666443324721.plist | 64 +++++++++++++++++++ ...plistsingle_054_16179523907167503112.plist | 64 +++++++++++++++++++ ...plistsingle_055_10302789346589621855.plist | 64 +++++++++++++++++++ ...plistsingle_056_17339521907358041934.plist | 64 +++++++++++++++++++ ...plistsingle_057_11654748697715948069.plist | 64 +++++++++++++++++++ .../plistsingle_058_5104359173006278476.plist | 64 +++++++++++++++++++ ...plistsingle_059_17866611512050558243.plist | 64 +++++++++++++++++++ ...plistsingle_060_13692926178100942867.plist | 64 +++++++++++++++++++ ...plistsingle_061_13244920293020499324.plist | 64 +++++++++++++++++++ .../plistsingle_062_2801849921142396665.plist | 64 +++++++++++++++++++ ...plistsingle_063_14566198871679280994.plist | 64 +++++++++++++++++++ .../plistsingle_064_8194677400726075463.plist | 64 +++++++++++++++++++ .../plistsingle_065_1726731025477295216.plist | 64 +++++++++++++++++++ .../plistsingle_066_6257886556064623053.plist | 64 +++++++++++++++++++ ...plistsingle_067_12134304457293579542.plist | 64 +++++++++++++++++++ ...plistsingle_068_11811959429744441947.plist | 64 +++++++++++++++++++ ...plistsingle_069_11507226631081024388.plist | 64 +++++++++++++++++++ ...plistsingle_070_13827446741497847186.plist | 64 +++++++++++++++++++ .../plistsingle_071_8142955006832575337.plist | 64 +++++++++++++++++++ .../plistsingle_072_3288350689373352044.plist | 64 +++++++++++++++++++ .../plistsingle_073_3646005366887694531.plist | 64 +++++++++++++++++++ ...plistsingle_074_17475409542983758214.plist | 64 +++++++++++++++++++ .../plistsingle_075_5465931072055442301.plist | 64 +++++++++++++++++++ ...plistsingle_076_16451013258655101280.plist | 64 +++++++++++++++++++ ...plistsingle_077_10360111425130154999.plist | 64 +++++++++++++++++++ ...plistsingle_078_15043550312970159514.plist | 64 +++++++++++++++++++ ...plistsingle_079_12425166650689334353.plist | 64 +++++++++++++++++++ ...plistsingle_080_17464750084948464481.plist | 64 +++++++++++++++++++ ...plistsingle_081_17024415570423165034.plist | 64 +++++++++++++++++++ ...plistsingle_082_10070644321642523931.plist | 64 +++++++++++++++++++ ...plistsingle_083_15755136056307795780.plist | 64 +++++++++++++++++++ ...plistsingle_084_11729254263969926101.plist | 64 +++++++++++++++++++ ...plistsingle_085_11526131608676194878.plist | 64 +++++++++++++++++++ .../plistsingle_086_7638749907256822479.plist | 64 +++++++++++++++++++ test/plistsingle_087_956354784084155192.plist | 64 +++++++++++++++++++ test/plistsingle_088_815651583253766329.plist | 64 +++++++++++++++++++ test/plistsingle_089_612528927960035106.plist | 64 +++++++++++++++++++ test/plistsingle_090_217602653902721384.plist | 64 +++++++++++++++++++ ...plistsingle_091_12979573517970179135.plist | 64 +++++++++++++++++++ .../plistsingle_092_1569280530052225582.plist | 64 +++++++++++++++++++ .../plistsingle_093_1682333452756677765.plist | 64 +++++++++++++++++++ .../plistsingle_094_2649497068288422836.plist | 64 +++++++++++++++++++ .../plistsingle_095_6156221130174990987.plist | 64 +++++++++++++++++++ ...plistsingle_096_13301953729891419482.plist | 64 +++++++++++++++++++ ...plistsingle_097_16673076075916105745.plist | 64 +++++++++++++++++++ ...plistsingle_098_14464814920766470944.plist | 64 +++++++++++++++++++ .../plistsingle_099_8618796317028236983.plist | 64 +++++++++++++++++++ .../plistsingle_100_1323296195754830746.plist | 64 +++++++++++++++++++ test/plistsingle_2_10715338952105027795.plist | 64 +++++++++++++++++++ test/plistsingle_4_15737255920495926157.plist | 64 +++++++++++++++++++ ...istsinglefs_001_13988868595647931277.plist | 64 +++++++++++++++++++ ...listsinglefs_002_9212829835273891120.plist | 64 +++++++++++++++++++ ...istsinglefs_003_15681057685499493383.plist | 64 +++++++++++++++++++ ...istsinglefs_004_10085107550622083362.plist | 64 +++++++++++++++++++ ...istsinglefs_005_10288230205915814585.plist | 64 +++++++++++++++++++ ...listsinglefs_006_2529439733871077948.plist | 64 +++++++++++++++++++ ...listsinglefs_007_8966951627257032915.plist | 64 +++++++++++++++++++ ...listsinglefs_008_2551966157628691518.plist | 64 +++++++++++++++++++ ...listsinglefs_009_2755088812922422741.plist | 64 +++++++++++++++++++ ...istsinglefs_010_10363711595465424215.plist | 64 +++++++++++++++++++ ...istsinglefs_011_16017768848267870784.plist | 64 +++++++++++++++++++ ...listsinglefs_012_5277569891454924125.plist | 64 +++++++++++++++++++ ...istsinglefs_013_17286766887406418022.plist | 64 +++++++++++++++++++ ...listsinglefs_014_3649605537222963747.plist | 64 +++++++++++++++++++ ...listsinglefs_015_9334097271888235596.plist | 64 +++++++++++++++++++ ...istsinglefs_016_13943818359560746569.plist | 64 +++++++++++++++++++ ...istsinglefs_017_13831046911833116402.plist | 64 +++++++++++++++++++ ...istsinglefs_018_14532527445471578975.plist | 64 +++++++++++++++++++ ...listsinglefs_019_1962517932339908616.plist | 64 +++++++++++++++++++ ...istsinglefs_020_18156315275994242456.plist | 64 +++++++++++++++++++ ...listsinglefs_021_6147083095670645807.plist | 64 +++++++++++++++++++ ...istsinglefs_022_10471590852789339934.plist | 64 +++++++++++++++++++ ...istsinglefs_023_16909102746175294901.plist | 64 +++++++++++++++++++ ...istsinglefs_024_14700595300420940836.plist | 64 +++++++++++++++++++ ...listsinglefs_025_8823860739843059579.plist | 64 +++++++++++++++++++ ...listsinglefs_026_3512355274155447882.plist | 64 +++++++++++++++++++ ...istsinglefs_027_16165326099274897217.plist | 64 +++++++++++++++++++ ...listsinglefs_028_4920099694817211664.plist | 64 +++++++++++++++++++ ...listsinglefs_029_5153938306950590183.plist | 64 +++++++++++++++++++ ...listsinglefs_030_7698910624868602385.plist | 64 +++++++++++++++++++ ...listsinglefs_031_4327788278843916122.plist | 64 +++++++++++++++++++ ...istsinglefs_032_15628799752837039243.plist | 64 +++++++++++++++++++ ...istsinglefs_033_12122075690950471092.plist | 64 +++++++++++++++++++ ...istsinglefs_034_11154912075418726021.plist | 64 +++++++++++++++++++ ...istsinglefs_035_11041859152714273838.plist | 64 +++++++++++++++++++ ...listsinglefs_036_4005408066922675775.plist | 64 +++++++++++++++++++ ...listsinglefs_037_9690181276564769640.plist | 64 +++++++++++++++++++ ...listsinglefs_038_3416698981011843369.plist | 64 +++++++++++++++++++ ...listsinglefs_039_9101472190653937234.plist | 64 +++++++++++++++++++ ...istsinglefs_040_16172580577588737498.plist | 64 +++++++++++++++++++ ...listsinglefs_041_1096958849903872145.plist | 64 +++++++++++++++++++ ...listsinglefs_042_5520123915985740852.plist | 64 +++++++++++++++++++ ...listsinglefs_043_9026847977872309003.plist | 64 +++++++++++++++++++ ...listsinglefs_044_4439907377749543598.plist | 64 +++++++++++++++++++ ...listsinglefs_045_4552960300453995781.plist | 64 +++++++++++++++++++ ...listsinglefs_046_3088229501600039400.plist | 64 +++++++++++++++++++ ...istsinglefs_047_15850200365667497151.plist | 64 +++++++++++++++++++ ...listsinglefs_048_2499520415689206994.plist | 64 +++++++++++++++++++ ...istsinglefs_049_15261491279756664745.plist | 64 +++++++++++++++++++ ...istsinglefs_050_12941271169339841947.plist | 64 +++++++++++++++++++ ...plistsinglefs_051_179018830295562180.plist | 64 +++++++++++++++++++ ...listsinglefs_052_1888632858936230881.plist | 64 +++++++++++++++++++ ...listsinglefs_053_1448298344410931434.plist | 64 +++++++++++++++++++ ...istsinglefs_054_10509376754954140495.plist | 64 +++++++++++++++++++ ...listsinglefs_055_3826981631781473208.plist | 64 +++++++++++++++++++ ...istsinglefs_056_14599881111667244117.plist | 64 +++++++++++++++++++ ...istsinglefs_057_14396758456373512894.plist | 64 +++++++++++++++++++ ...listsinglefs_058_2364999852292302675.plist | 64 +++++++++++++++++++ ...istsinglefs_059_14374232032615899324.plist | 64 +++++++++++++++++++ ...listsinglefs_060_6947539013353553244.plist | 64 +++++++++++++++++++ ...istsinglefs_061_13385050906739508211.plist | 64 +++++++++++++++++++ ...listsinglefs_062_8076856241076547522.plist | 64 +++++++++++++++++++ ...istsinglefs_063_14514368134462502489.plist | 64 +++++++++++++++++++ ...istsinglefs_064_13631210589733188432.plist | 64 +++++++++++++++++++ ...listsinglefs_065_1897296121059129383.plist | 64 +++++++++++++++++++ ...listsinglefs_066_5644961826690846070.plist | 64 +++++++++++++++++++ ...istsinglefs_067_18406967875130406573.plist | 64 +++++++++++++++++++ ...istsinglefs_068_11199069884742767716.plist | 64 +++++++++++++++++++ ...listsinglefs_069_5322616799141708475.plist | 64 +++++++++++++++++++ ...istsinglefs_070_10307150971210564661.plist | 64 +++++++++++++++++++ ...listsinglefs_071_3869639077824609694.plist | 64 +++++++++++++++++++ ...istsinglefs_072_17991875394415467183.plist | 64 +++++++++++++++++++ ...istsinglefs_073_11554363501029512216.plist | 64 +++++++++++++++++++ ...listsinglefs_074_9563374324310166977.plist | 64 +++++++++++++++++++ ...istsinglefs_075_15357147572900269258.plist | 64 +++++++++++++++++++ ...listsinglefs_076_2221908964878329339.plist | 64 +++++++++++++++++++ ...listsinglefs_077_8098643525456210596.plist | 64 +++++++++++++++++++ ...listsinglefs_078_2849303450439809261.plist | 64 +++++++++++++++++++ ...listsinglefs_079_2544535467404288950.plist | 64 +++++++++++++++++++ ...istsinglefs_080_15714431376569431070.plist | 64 +++++++++++++++++++ ...listsinglefs_081_3705199196245834421.plist | 64 +++++++++++++++++++ ...listsinglefs_082_4952411726064781976.plist | 64 +++++++++++++++++++ ...istsinglefs_083_11389923619450736943.plist | 64 +++++++++++++++++++ ...listsinglefs_084_8755195797935539018.plist | 64 +++++++++++++++++++ ...listsinglefs_085_2961422549345436737.plist | 64 +++++++++++++++++++ ...listsinglefs_086_1496691750491480356.plist | 64 +++++++++++++++++++ ...istsinglefs_087_14066701263623150715.plist | 64 +++++++++++++++++++ ...istsinglefs_088_14389327766149110326.plist | 64 +++++++++++++++++++ ...istsinglefs_089_14694095749184630637.plist | 64 +++++++++++++++++++ ...listsinglefs_090_9248248590702766911.plist | 64 +++++++++++++++++++ ...istsinglefs_091_14933021800344860776.plist | 64 +++++++++++++++++++ ...istsinglefs_092_16397752599198817157.plist | 64 +++++++++++++++++++ ...istsinglefs_093_16284699676494364974.plist | 64 +++++++++++++++++++ ...listsinglefs_094_2424896202907578763.plist | 64 +++++++++++++++++++ ...istsinglefs_095_17364916214730562228.plist | 64 +++++++++++++++++++ ...istsinglefs_096_12941751148648693521.plist | 64 +++++++++++++++++++ ...listsinglefs_097_9570628802624007258.plist | 64 +++++++++++++++++++ ...listsinglefs_098_4887471389760824759.plist | 64 +++++++++++++++++++ ...istsinglefs_099_10733489993499058720.plist | 64 +++++++++++++++++++ ...listsinglefs_100_9929666059625854277.plist | 64 +++++++++++++++++++ .../plistsinglefs_2_5071803044175591832.plist | 64 +++++++++++++++++++ .../plistsinglefs_4_8874587116046348874.plist | 64 +++++++++++++++++++ .../plistthread_100_5268126128994548098.plist | 64 +++++++++++++++++++ test/plistthread_10_7575256409926221148.plist | 64 +++++++++++++++++++ .../plistthread_11_14012768303312176115.plist | 64 +++++++++++++++++++ test/plistthread_12_8704573637649215426.plist | 64 +++++++++++++++++++ .../plistthread_13_15142085531035170393.plist | 64 +++++++++++++++++++ .../plistthread_14_14258927986305856336.plist | 64 +++++++++++++++++++ test/plistthread_15_2525013517631797287.plist | 64 +++++++++++++++++++ test/plistthread_16_6272679223263513974.plist | 64 +++++++++++++++++++ test/plistthread_17_587941197993522861.plist | 64 +++++++++++++++++++ .../plistthread_18_11826787281315435620.plist | 64 +++++++++++++++++++ test/plistthread_19_5950334195714376379.plist | 64 +++++++++++++++++++ test/plistthread_1_14399305487663705930.plist | 64 +++++++++++++++++++ .../plistthread_20_13568988565912509851.plist | 64 +++++++++++++++++++ test/plistthread_21_806736226868230084.plist | 64 +++++++++++++++++++ test/plistthread_22_2516350255508898785.plist | 64 +++++++++++++++++++ test/plistthread_23_2076015740983599338.plist | 64 +++++++++++++++++++ .../plistthread_24_11137094151526808399.plist | 64 +++++++++++++++++++ test/plistthread_25_4454699028354141112.plist | 64 +++++++++++++++++++ .../plistthread_26_15227598508239912021.plist | 64 +++++++++++++++++++ .../plistthread_27_15024475852946180798.plist | 64 +++++++++++++++++++ test/plistthread_28_2992717248864970579.plist | 64 +++++++++++++++++++ .../plistthread_29_15001949429188567228.plist | 64 +++++++++++++++++++ test/plistthread_2_1264066879641766011.plist | 64 +++++++++++++++++++ .../plistthread_30_16800297974161405402.plist | 64 +++++++++++++++++++ test/plistthread_31_1724676246476540049.plist | 64 +++++++++++++++++++ test/plistthread_32_6147841312558408756.plist | 64 +++++++++++++++++++ test/plistthread_33_9654565374444976907.plist | 64 +++++++++++++++++++ test/plistthread_34_5067624774322211502.plist | 64 +++++++++++++++++++ test/plistthread_35_5180677697026663685.plist | 64 +++++++++++++++++++ test/plistthread_36_3715946898172707304.plist | 64 +++++++++++++++++++ .../plistthread_37_16477917762240165055.plist | 64 +++++++++++++++++++ test/plistthread_38_3127237812261874898.plist | 64 +++++++++++++++++++ .../plistthread_39_15889208676329332649.plist | 64 +++++++++++++++++++ test/plistthread_3_7140801440219647268.plist | 64 +++++++++++++++++++ test/plistthread_40_8326628021441270289.plist | 64 +++++++++++++++++++ test/plistthread_41_4955505675416584026.plist | 64 +++++++++++++++++++ .../plistthread_42_16256517149409707147.plist | 64 +++++++++++++++++++ .../plistthread_43_12749793087523138996.plist | 64 +++++++++++++++++++ .../plistthread_44_11782629471991393925.plist | 64 +++++++++++++++++++ .../plistthread_45_11669576549286941742.plist | 64 +++++++++++++++++++ test/plistthread_46_4633125463495343679.plist | 64 +++++++++++++++++++ .../plistthread_47_10317898673137437544.plist | 64 +++++++++++++++++++ test/plistthread_48_4044416377584511273.plist | 64 +++++++++++++++++++ test/plistthread_49_9729189587226605138.plist | 64 +++++++++++++++++++ test/plistthread_4_9349308885974001333.plist | 64 +++++++++++++++++++ test/plistthread_50_337288598857358744.plist | 64 +++++++++++++++++++ test/plistthread_51_6774800492243313711.plist | 64 +++++++++++++++++++ .../plistthread_52_11099308249362007838.plist | 64 +++++++++++++++++++ .../plistthread_53_17536820142747962805.plist | 64 +++++++++++++++++++ .../plistthread_54_15328312696993608740.plist | 64 +++++++++++++++++++ test/plistthread_55_9451578136415727483.plist | 64 +++++++++++++++++++ test/plistthread_56_4140072670728115786.plist | 64 +++++++++++++++++++ .../plistthread_57_16793043495847565121.plist | 64 +++++++++++++++++++ test/plistthread_58_5547817091389879568.plist | 64 +++++++++++++++++++ test/plistthread_59_5781655703523258087.plist | 64 +++++++++++++++++++ test/plistthread_5_2911796992588046366.plist | 64 +++++++++++++++++++ .../plistthread_60_10991428992038092119.plist | 64 +++++++++++++++++++ .../plistthread_61_16645486244840538688.plist | 64 +++++++++++++++++++ test/plistthread_62_5905287288027592029.plist | 64 +++++++++++++++++++ .../plistthread_63_17914484283979085926.plist | 64 +++++++++++++++++++ test/plistthread_64_4277322933795631651.plist | 64 +++++++++++++++++++ test/plistthread_65_9961814668460903500.plist | 64 +++++++++++++++++++ .../plistthread_66_14571535756133414473.plist | 64 +++++++++++++++++++ .../plistthread_67_14458764308405784306.plist | 64 +++++++++++++++++++ .../plistthread_68_15160244842044246879.plist | 64 +++++++++++++++++++ test/plistthread_69_2590235328912576520.plist | 64 +++++++++++++++++++ test/plistthread_6_17034033309178903855.plist | 64 +++++++++++++++++++ test/plistthread_70_2046541294716826070.plist | 64 +++++++++++++++++++ .../plistthread_71_14616585992220599181.plist | 64 +++++++++++++++++++ test/plistthread_72_9840547231846559024.plist | 64 +++++++++++++++++++ .../plistthread_73_16308775082072161287.plist | 64 +++++++++++++++++++ .../plistthread_74_10712824947194751266.plist | 64 +++++++++++++++++++ .../plistthread_75_10915947602488482489.plist | 64 +++++++++++++++++++ test/plistthread_76_3157157130443745852.plist | 64 +++++++++++++++++++ test/plistthread_77_9594669023829700819.plist | 64 +++++++++++++++++++ test/plistthread_78_3179683554201359422.plist | 64 +++++++++++++++++++ test/plistthread_79_3382806209495090645.plist | 64 +++++++++++++++++++ test/plistthread_7_10596521415792948888.plist | 64 +++++++++++++++++++ .../plistthread_80_11148127811807683165.plist | 64 +++++++++++++++++++ test/plistthread_81_4710580734049625446.plist | 64 +++++++++++++++++++ .../plistthread_82_16234269515818183255.plist | 64 +++++++++++++++++++ test/plistthread_83_3441582694911078208.plist | 64 +++++++++++++++++++ test/plistthread_84_1367632206203953993.plist | 64 +++++++++++++++++++ test/plistthread_85_1254860758476323826.plist | 64 +++++++++++++++++++ test/plistthread_86_9520163457575722787.plist | 64 +++++++++++++++++++ .../plistthread_87_15204655192240994636.plist | 64 +++++++++++++++++++ test/plistthread_88_3308300643241112613.plist | 64 +++++++++++++++++++ test/plistthread_89_8993073852883206478.plist | 64 +++++++++++++++++++ test/plistthread_8_16690207453054783769.plist | 64 +++++++++++++++++++ .../plistthread_90_12651528525613051460.plist | 64 +++++++++++++++++++ test/plistthread_91_6967036790947779611.plist | 64 +++++++++++++++++++ .../plistthread_92_13920808039728420714.plist | 64 +++++++++++++++++++ .../plistthread_93_14361142554253720161.plist | 64 +++++++++++++++++++ .../plistthread_94_16299491327098962488.plist | 64 +++++++++++++++++++ test/plistthread_95_4535142376562078159.plist | 64 +++++++++++++++++++ test/plistthread_96_8422524077981450558.plist | 64 +++++++++++++++++++ test/plistthread_97_8625646733275181781.plist | 64 +++++++++++++++++++ test/plistthread_98_8399997654223836988.plist | 64 +++++++++++++++++++ .../plistthread_99_14837509547609791955.plist | 64 +++++++++++++++++++ test/plistthread_9_10252977034645650818.plist | 64 +++++++++++++++++++ test/testsimplifytokens.cpp | 3 +- test/testtokenize.cpp | 6 +- 326 files changed, 19548 insertions(+), 101 deletions(-) create mode 100644 test/plistsingle_001_1982654442753025810.plist create mode 100644 test/plistsingle_002_10247957141852424771.plist create mode 100644 test/plistsingle_003_9890302464338082284.plist create mode 100644 test/plistsingle_004_12067882847020172541.plist create mode 100644 test/plistsingle_005_5630617244238936838.plist create mode 100644 test/plistsingle_006_16962063200094885239.plist create mode 100644 test/plistsingle_007_4606220959910279904.plist create mode 100644 test/plistsingle_008_580374351944512977.plist create mode 100644 test/plistsingle_009_3198758014225338138.plist create mode 100644 test/plistsingle_010_16003424265815961552.plist create mode 100644 test/plistsingle_011_4269509797141902503.plist create mode 100644 test/plistsingle_012_8017175502773619190.plist create mode 100644 test/plistsingle_013_2332437477503628077.plist create mode 100644 test/plistsingle_014_9319752689436326364.plist create mode 100644 test/plistsingle_015_15757264582822281331.plist create mode 100644 test/plistsingle_016_10449069917159320642.plist create mode 100644 test/plistsingle_017_16886581810545275609.plist create mode 100644 test/plistsingle_018_17272168241162376792.plist create mode 100644 test/plistsingle_019_17475290896456108015.plist create mode 100644 test/plistsingle_020_12881590431036913615.plist create mode 100644 test/plistsingle_021_6199195307864246328.plist create mode 100644 test/plistsingle_022_16972094787750017237.plist create mode 100644 test/plistsingle_023_16768972132456286014.plist create mode 100644 test/plistsingle_024_15313484845422615067.plist create mode 100644 test/plistsingle_025_2551232506378335300.plist create mode 100644 test/plistsingle_026_4260846535019004001.plist create mode 100644 test/plistsingle_027_3820512020493704554.plist create mode 100644 test/plistsingle_028_11451319586617536263.plist create mode 100644 test/plistsingle_029_4983091736391934000.plist create mode 100644 test/plistsingle_030_6812121053832316718.plist create mode 100644 test/plistsingle_031_6925173976536768901.plist create mode 100644 test/plistsingle_032_5460443177682812520.plist create mode 100644 test/plistsingle_033_18222414041750270271.plist create mode 100644 test/plistsingle_034_98050179961959002.plist create mode 100644 test/plistsingle_035_3469172525986645265.plist create mode 100644 test/plistsingle_036_7892337592068513972.plist create mode 100644 test/plistsingle_037_11399061653955082123.plist create mode 100644 test/plistsingle_038_8764298648067781446.plist create mode 100644 test/plistsingle_039_8967456487733615421.plist create mode 100644 test/plistsingle_040_14177229776248449453.plist create mode 100644 test/plistsingle_041_1415223727808888950.plist create mode 100644 test/plistsingle_042_16114302095886723879.plist create mode 100644 test/plistsingle_043_9401472490851231312.plist create mode 100644 test/plistsingle_044_10284630035580545369.plist create mode 100644 test/plistsingle_045_3847118142194590402.plist create mode 100644 test/plistsingle_046_9155312807857551091.plist create mode 100644 test/plistsingle_047_2717800914471596124.plist create mode 100644 test/plistsingle_048_2943449993522940917.plist create mode 100644 test/plistsingle_049_14952682173846537566.plist create mode 100644 test/plistsingle_050_164674247843652948.plist create mode 100644 test/plistsingle_051_3671398309730221099.plist create mode 100644 test/plistsingle_052_10625169558510862202.plist create mode 100644 test/plistsingle_053_7761902666443324721.plist create mode 100644 test/plistsingle_054_16179523907167503112.plist create mode 100644 test/plistsingle_055_10302789346589621855.plist create mode 100644 test/plistsingle_056_17339521907358041934.plist create mode 100644 test/plistsingle_057_11654748697715948069.plist create mode 100644 test/plistsingle_058_5104359173006278476.plist create mode 100644 test/plistsingle_059_17866611512050558243.plist create mode 100644 test/plistsingle_060_13692926178100942867.plist create mode 100644 test/plistsingle_061_13244920293020499324.plist create mode 100644 test/plistsingle_062_2801849921142396665.plist create mode 100644 test/plistsingle_063_14566198871679280994.plist create mode 100644 test/plistsingle_064_8194677400726075463.plist create mode 100644 test/plistsingle_065_1726731025477295216.plist create mode 100644 test/plistsingle_066_6257886556064623053.plist create mode 100644 test/plistsingle_067_12134304457293579542.plist create mode 100644 test/plistsingle_068_11811959429744441947.plist create mode 100644 test/plistsingle_069_11507226631081024388.plist create mode 100644 test/plistsingle_070_13827446741497847186.plist create mode 100644 test/plistsingle_071_8142955006832575337.plist create mode 100644 test/plistsingle_072_3288350689373352044.plist create mode 100644 test/plistsingle_073_3646005366887694531.plist create mode 100644 test/plistsingle_074_17475409542983758214.plist create mode 100644 test/plistsingle_075_5465931072055442301.plist create mode 100644 test/plistsingle_076_16451013258655101280.plist create mode 100644 test/plistsingle_077_10360111425130154999.plist create mode 100644 test/plistsingle_078_15043550312970159514.plist create mode 100644 test/plistsingle_079_12425166650689334353.plist create mode 100644 test/plistsingle_080_17464750084948464481.plist create mode 100644 test/plistsingle_081_17024415570423165034.plist create mode 100644 test/plistsingle_082_10070644321642523931.plist create mode 100644 test/plistsingle_083_15755136056307795780.plist create mode 100644 test/plistsingle_084_11729254263969926101.plist create mode 100644 test/plistsingle_085_11526131608676194878.plist create mode 100644 test/plistsingle_086_7638749907256822479.plist create mode 100644 test/plistsingle_087_956354784084155192.plist create mode 100644 test/plistsingle_088_815651583253766329.plist create mode 100644 test/plistsingle_089_612528927960035106.plist create mode 100644 test/plistsingle_090_217602653902721384.plist create mode 100644 test/plistsingle_091_12979573517970179135.plist create mode 100644 test/plistsingle_092_1569280530052225582.plist create mode 100644 test/plistsingle_093_1682333452756677765.plist create mode 100644 test/plistsingle_094_2649497068288422836.plist create mode 100644 test/plistsingle_095_6156221130174990987.plist create mode 100644 test/plistsingle_096_13301953729891419482.plist create mode 100644 test/plistsingle_097_16673076075916105745.plist create mode 100644 test/plistsingle_098_14464814920766470944.plist create mode 100644 test/plistsingle_099_8618796317028236983.plist create mode 100644 test/plistsingle_100_1323296195754830746.plist create mode 100644 test/plistsingle_2_10715338952105027795.plist create mode 100644 test/plistsingle_4_15737255920495926157.plist create mode 100644 test/plistsinglefs_001_13988868595647931277.plist create mode 100644 test/plistsinglefs_002_9212829835273891120.plist create mode 100644 test/plistsinglefs_003_15681057685499493383.plist create mode 100644 test/plistsinglefs_004_10085107550622083362.plist create mode 100644 test/plistsinglefs_005_10288230205915814585.plist create mode 100644 test/plistsinglefs_006_2529439733871077948.plist create mode 100644 test/plistsinglefs_007_8966951627257032915.plist create mode 100644 test/plistsinglefs_008_2551966157628691518.plist create mode 100644 test/plistsinglefs_009_2755088812922422741.plist create mode 100644 test/plistsinglefs_010_10363711595465424215.plist create mode 100644 test/plistsinglefs_011_16017768848267870784.plist create mode 100644 test/plistsinglefs_012_5277569891454924125.plist create mode 100644 test/plistsinglefs_013_17286766887406418022.plist create mode 100644 test/plistsinglefs_014_3649605537222963747.plist create mode 100644 test/plistsinglefs_015_9334097271888235596.plist create mode 100644 test/plistsinglefs_016_13943818359560746569.plist create mode 100644 test/plistsinglefs_017_13831046911833116402.plist create mode 100644 test/plistsinglefs_018_14532527445471578975.plist create mode 100644 test/plistsinglefs_019_1962517932339908616.plist create mode 100644 test/plistsinglefs_020_18156315275994242456.plist create mode 100644 test/plistsinglefs_021_6147083095670645807.plist create mode 100644 test/plistsinglefs_022_10471590852789339934.plist create mode 100644 test/plistsinglefs_023_16909102746175294901.plist create mode 100644 test/plistsinglefs_024_14700595300420940836.plist create mode 100644 test/plistsinglefs_025_8823860739843059579.plist create mode 100644 test/plistsinglefs_026_3512355274155447882.plist create mode 100644 test/plistsinglefs_027_16165326099274897217.plist create mode 100644 test/plistsinglefs_028_4920099694817211664.plist create mode 100644 test/plistsinglefs_029_5153938306950590183.plist create mode 100644 test/plistsinglefs_030_7698910624868602385.plist create mode 100644 test/plistsinglefs_031_4327788278843916122.plist create mode 100644 test/plistsinglefs_032_15628799752837039243.plist create mode 100644 test/plistsinglefs_033_12122075690950471092.plist create mode 100644 test/plistsinglefs_034_11154912075418726021.plist create mode 100644 test/plistsinglefs_035_11041859152714273838.plist create mode 100644 test/plistsinglefs_036_4005408066922675775.plist create mode 100644 test/plistsinglefs_037_9690181276564769640.plist create mode 100644 test/plistsinglefs_038_3416698981011843369.plist create mode 100644 test/plistsinglefs_039_9101472190653937234.plist create mode 100644 test/plistsinglefs_040_16172580577588737498.plist create mode 100644 test/plistsinglefs_041_1096958849903872145.plist create mode 100644 test/plistsinglefs_042_5520123915985740852.plist create mode 100644 test/plistsinglefs_043_9026847977872309003.plist create mode 100644 test/plistsinglefs_044_4439907377749543598.plist create mode 100644 test/plistsinglefs_045_4552960300453995781.plist create mode 100644 test/plistsinglefs_046_3088229501600039400.plist create mode 100644 test/plistsinglefs_047_15850200365667497151.plist create mode 100644 test/plistsinglefs_048_2499520415689206994.plist create mode 100644 test/plistsinglefs_049_15261491279756664745.plist create mode 100644 test/plistsinglefs_050_12941271169339841947.plist create mode 100644 test/plistsinglefs_051_179018830295562180.plist create mode 100644 test/plistsinglefs_052_1888632858936230881.plist create mode 100644 test/plistsinglefs_053_1448298344410931434.plist create mode 100644 test/plistsinglefs_054_10509376754954140495.plist create mode 100644 test/plistsinglefs_055_3826981631781473208.plist create mode 100644 test/plistsinglefs_056_14599881111667244117.plist create mode 100644 test/plistsinglefs_057_14396758456373512894.plist create mode 100644 test/plistsinglefs_058_2364999852292302675.plist create mode 100644 test/plistsinglefs_059_14374232032615899324.plist create mode 100644 test/plistsinglefs_060_6947539013353553244.plist create mode 100644 test/plistsinglefs_061_13385050906739508211.plist create mode 100644 test/plistsinglefs_062_8076856241076547522.plist create mode 100644 test/plistsinglefs_063_14514368134462502489.plist create mode 100644 test/plistsinglefs_064_13631210589733188432.plist create mode 100644 test/plistsinglefs_065_1897296121059129383.plist create mode 100644 test/plistsinglefs_066_5644961826690846070.plist create mode 100644 test/plistsinglefs_067_18406967875130406573.plist create mode 100644 test/plistsinglefs_068_11199069884742767716.plist create mode 100644 test/plistsinglefs_069_5322616799141708475.plist create mode 100644 test/plistsinglefs_070_10307150971210564661.plist create mode 100644 test/plistsinglefs_071_3869639077824609694.plist create mode 100644 test/plistsinglefs_072_17991875394415467183.plist create mode 100644 test/plistsinglefs_073_11554363501029512216.plist create mode 100644 test/plistsinglefs_074_9563374324310166977.plist create mode 100644 test/plistsinglefs_075_15357147572900269258.plist create mode 100644 test/plistsinglefs_076_2221908964878329339.plist create mode 100644 test/plistsinglefs_077_8098643525456210596.plist create mode 100644 test/plistsinglefs_078_2849303450439809261.plist create mode 100644 test/plistsinglefs_079_2544535467404288950.plist create mode 100644 test/plistsinglefs_080_15714431376569431070.plist create mode 100644 test/plistsinglefs_081_3705199196245834421.plist create mode 100644 test/plistsinglefs_082_4952411726064781976.plist create mode 100644 test/plistsinglefs_083_11389923619450736943.plist create mode 100644 test/plistsinglefs_084_8755195797935539018.plist create mode 100644 test/plistsinglefs_085_2961422549345436737.plist create mode 100644 test/plistsinglefs_086_1496691750491480356.plist create mode 100644 test/plistsinglefs_087_14066701263623150715.plist create mode 100644 test/plistsinglefs_088_14389327766149110326.plist create mode 100644 test/plistsinglefs_089_14694095749184630637.plist create mode 100644 test/plistsinglefs_090_9248248590702766911.plist create mode 100644 test/plistsinglefs_091_14933021800344860776.plist create mode 100644 test/plistsinglefs_092_16397752599198817157.plist create mode 100644 test/plistsinglefs_093_16284699676494364974.plist create mode 100644 test/plistsinglefs_094_2424896202907578763.plist create mode 100644 test/plistsinglefs_095_17364916214730562228.plist create mode 100644 test/plistsinglefs_096_12941751148648693521.plist create mode 100644 test/plistsinglefs_097_9570628802624007258.plist create mode 100644 test/plistsinglefs_098_4887471389760824759.plist create mode 100644 test/plistsinglefs_099_10733489993499058720.plist create mode 100644 test/plistsinglefs_100_9929666059625854277.plist create mode 100644 test/plistsinglefs_2_5071803044175591832.plist create mode 100644 test/plistsinglefs_4_8874587116046348874.plist create mode 100644 test/plistthread_100_5268126128994548098.plist create mode 100644 test/plistthread_10_7575256409926221148.plist create mode 100644 test/plistthread_11_14012768303312176115.plist create mode 100644 test/plistthread_12_8704573637649215426.plist create mode 100644 test/plistthread_13_15142085531035170393.plist create mode 100644 test/plistthread_14_14258927986305856336.plist create mode 100644 test/plistthread_15_2525013517631797287.plist create mode 100644 test/plistthread_16_6272679223263513974.plist create mode 100644 test/plistthread_17_587941197993522861.plist create mode 100644 test/plistthread_18_11826787281315435620.plist create mode 100644 test/plistthread_19_5950334195714376379.plist create mode 100644 test/plistthread_1_14399305487663705930.plist create mode 100644 test/plistthread_20_13568988565912509851.plist create mode 100644 test/plistthread_21_806736226868230084.plist create mode 100644 test/plistthread_22_2516350255508898785.plist create mode 100644 test/plistthread_23_2076015740983599338.plist create mode 100644 test/plistthread_24_11137094151526808399.plist create mode 100644 test/plistthread_25_4454699028354141112.plist create mode 100644 test/plistthread_26_15227598508239912021.plist create mode 100644 test/plistthread_27_15024475852946180798.plist create mode 100644 test/plistthread_28_2992717248864970579.plist create mode 100644 test/plistthread_29_15001949429188567228.plist create mode 100644 test/plistthread_2_1264066879641766011.plist create mode 100644 test/plistthread_30_16800297974161405402.plist create mode 100644 test/plistthread_31_1724676246476540049.plist create mode 100644 test/plistthread_32_6147841312558408756.plist create mode 100644 test/plistthread_33_9654565374444976907.plist create mode 100644 test/plistthread_34_5067624774322211502.plist create mode 100644 test/plistthread_35_5180677697026663685.plist create mode 100644 test/plistthread_36_3715946898172707304.plist create mode 100644 test/plistthread_37_16477917762240165055.plist create mode 100644 test/plistthread_38_3127237812261874898.plist create mode 100644 test/plistthread_39_15889208676329332649.plist create mode 100644 test/plistthread_3_7140801440219647268.plist create mode 100644 test/plistthread_40_8326628021441270289.plist create mode 100644 test/plistthread_41_4955505675416584026.plist create mode 100644 test/plistthread_42_16256517149409707147.plist create mode 100644 test/plistthread_43_12749793087523138996.plist create mode 100644 test/plistthread_44_11782629471991393925.plist create mode 100644 test/plistthread_45_11669576549286941742.plist create mode 100644 test/plistthread_46_4633125463495343679.plist create mode 100644 test/plistthread_47_10317898673137437544.plist create mode 100644 test/plistthread_48_4044416377584511273.plist create mode 100644 test/plistthread_49_9729189587226605138.plist create mode 100644 test/plistthread_4_9349308885974001333.plist create mode 100644 test/plistthread_50_337288598857358744.plist create mode 100644 test/plistthread_51_6774800492243313711.plist create mode 100644 test/plistthread_52_11099308249362007838.plist create mode 100644 test/plistthread_53_17536820142747962805.plist create mode 100644 test/plistthread_54_15328312696993608740.plist create mode 100644 test/plistthread_55_9451578136415727483.plist create mode 100644 test/plistthread_56_4140072670728115786.plist create mode 100644 test/plistthread_57_16793043495847565121.plist create mode 100644 test/plistthread_58_5547817091389879568.plist create mode 100644 test/plistthread_59_5781655703523258087.plist create mode 100644 test/plistthread_5_2911796992588046366.plist create mode 100644 test/plistthread_60_10991428992038092119.plist create mode 100644 test/plistthread_61_16645486244840538688.plist create mode 100644 test/plistthread_62_5905287288027592029.plist create mode 100644 test/plistthread_63_17914484283979085926.plist create mode 100644 test/plistthread_64_4277322933795631651.plist create mode 100644 test/plistthread_65_9961814668460903500.plist create mode 100644 test/plistthread_66_14571535756133414473.plist create mode 100644 test/plistthread_67_14458764308405784306.plist create mode 100644 test/plistthread_68_15160244842044246879.plist create mode 100644 test/plistthread_69_2590235328912576520.plist create mode 100644 test/plistthread_6_17034033309178903855.plist create mode 100644 test/plistthread_70_2046541294716826070.plist create mode 100644 test/plistthread_71_14616585992220599181.plist create mode 100644 test/plistthread_72_9840547231846559024.plist create mode 100644 test/plistthread_73_16308775082072161287.plist create mode 100644 test/plistthread_74_10712824947194751266.plist create mode 100644 test/plistthread_75_10915947602488482489.plist create mode 100644 test/plistthread_76_3157157130443745852.plist create mode 100644 test/plistthread_77_9594669023829700819.plist create mode 100644 test/plistthread_78_3179683554201359422.plist create mode 100644 test/plistthread_79_3382806209495090645.plist create mode 100644 test/plistthread_7_10596521415792948888.plist create mode 100644 test/plistthread_80_11148127811807683165.plist create mode 100644 test/plistthread_81_4710580734049625446.plist create mode 100644 test/plistthread_82_16234269515818183255.plist create mode 100644 test/plistthread_83_3441582694911078208.plist create mode 100644 test/plistthread_84_1367632206203953993.plist create mode 100644 test/plistthread_85_1254860758476323826.plist create mode 100644 test/plistthread_86_9520163457575722787.plist create mode 100644 test/plistthread_87_15204655192240994636.plist create mode 100644 test/plistthread_88_3308300643241112613.plist create mode 100644 test/plistthread_89_8993073852883206478.plist create mode 100644 test/plistthread_8_16690207453054783769.plist create mode 100644 test/plistthread_90_12651528525613051460.plist create mode 100644 test/plistthread_91_6967036790947779611.plist create mode 100644 test/plistthread_92_13920808039728420714.plist create mode 100644 test/plistthread_93_14361142554253720161.plist create mode 100644 test/plistthread_94_16299491327098962488.plist create mode 100644 test/plistthread_95_4535142376562078159.plist create mode 100644 test/plistthread_96_8422524077981450558.plist create mode 100644 test/plistthread_97_8625646733275181781.plist create mode 100644 test/plistthread_98_8399997654223836988.plist create mode 100644 test/plistthread_99_14837509547609791955.plist create mode 100644 test/plistthread_9_10252977034645650818.plist diff --git a/cli/cppcheckexecutor.cpp b/cli/cppcheckexecutor.cpp index c849b2cd32e..cb07f3f356e 100644 --- a/cli/cppcheckexecutor.cpp +++ b/cli/cppcheckexecutor.cpp @@ -182,7 +182,8 @@ bool CppCheckExecutor::parseFromArgs(Settings &settings, int argc, const char* c if (!ignored.empty()) std::cout << "cppcheck: Maybe all paths were ignored?" << std::endl; return false; - } else if (!settings.fileFilters.empty() && settings.project.fileSettings.empty()) { + } + if (!settings.fileFilters.empty() && settings.project.fileSettings.empty()) { std::map newMap; for (std::map::const_iterator i = mFiles.cbegin(); i != mFiles.cend(); ++i) if (matchglobs(settings.fileFilters, i->first)) { diff --git a/cli/cppcheckexecutorsig.cpp b/cli/cppcheckexecutorsig.cpp index 40a5b988e0b..e8d447682eb 100644 --- a/cli/cppcheckexecutorsig.cpp +++ b/cli/cppcheckexecutorsig.cpp @@ -69,8 +69,7 @@ static bool IsAddressOnStack(const void* ptr) char a; if (bStackBelowHeap) return ptr < &a; - else - return ptr > &a; + return ptr > &a; } /* (declare this list here, so it may be used in signal handlers in addition to main()) diff --git a/gui/cppchecklibrarydata.cpp b/gui/cppchecklibrarydata.cpp index d0e75e5b70c..2e7761a6534 100644 --- a/gui/cppchecklibrarydata.cpp +++ b/gui/cppchecklibrarydata.cpp @@ -514,11 +514,9 @@ QString CppcheckLibraryData::open(QIODevice &file) break; } } - if (xmlReader.hasError()) { + if (xmlReader.hasError()) return xmlReader.errorString(); - } else { - return QString(); - } + return QString(); } static void writeContainerFunctions(QXmlStreamWriter &xmlWriter, const QString &name, int extra, const QList &functions) diff --git a/gui/filelist.cpp b/gui/filelist.cpp index fa5e911027b..3115967c451 100644 --- a/gui/filelist.cpp +++ b/gui/filelist.cpp @@ -99,9 +99,8 @@ QStringList FileList::getFileList() const names << name; } return names; - } else { - return applyExcludeList(); } + return applyExcludeList(); } void FileList::addExcludeList(const QStringList &paths) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 1aa3971440d..b006e23fe52 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -2002,7 +2002,7 @@ static int getVersion(const QString& nameWithVersion) { for (const auto c: nameWithVersion) { if (c == '\n' || c == '\r') break; - else if (c == ' ') { + if (c == ' ') { if (ret > 0 && dot == 1 && nameWithVersion.endsWith(" dev")) return ret * 1000000 + v * 1000 + 500; dot = ret = v = 0; diff --git a/gui/translationhandler.cpp b/gui/translationhandler.cpp index 4e29762b05d..0a0aefd0763 100644 --- a/gui/translationhandler.cpp +++ b/gui/translationhandler.cpp @@ -182,10 +182,7 @@ int TranslationHandler::getLanguageIndexByCode(const QString &code) const { int index = -1; for (int i = 0; i < mTranslations.size(); i++) { - if (mTranslations[i].mCode == code) { - index = i; - break; - } else if (mTranslations[i].mCode == code.left(2)) { + if (mTranslations[i].mCode == code || mTranslations[i].mCode == code.left(2)) { index = i; break; } diff --git a/lib/checkcondition.cpp b/lib/checkcondition.cpp index 77f4093cfa9..03b1cd75056 100644 --- a/lib/checkcondition.cpp +++ b/lib/checkcondition.cpp @@ -576,9 +576,9 @@ static bool isNonConstFunctionCall(const Token *ftok, const Library &library) obj = obj->astOperand1(); if (!obj) return true; - else if (obj->variable() && obj->variable()->isConst()) + if (obj->variable() && obj->variable()->isConst()) return false; - else if (ftok->function() && ftok->function()->isConst()) + if (ftok->function() && ftok->function()->isConst()) return false; return true; } @@ -968,8 +968,7 @@ T getvalue3(const T value1, const T value2) const T min = std::min(value1, value2); if (min== std::numeric_limits::max()) return min; - else - return min+1; // see #5895 + return min + 1; // see #5895 } template<> @@ -1145,7 +1144,8 @@ void CheckCondition::checkIncorrectLogicOperator() "The condition '" + cond1VerboseMsg + "' is equivalent to '" + cond2VerboseMsg + "'."; redundantConditionError(tok, msg, false); continue; - } else if (isSameExpression(mTokenizer->isCPP(), false, tok->astOperand1(), tok2, mSettings->library, true, true)) { + } + if (isSameExpression(mTokenizer->isCPP(), false, tok->astOperand1(), tok2, mSettings->library, true, true)) { std::string expr1(tok->astOperand1()->expressionString()); std::string expr2(tok->astOperand2()->astOperand1()->expressionString()); std::string expr3(tok->astOperand2()->astOperand2()->expressionString()); diff --git a/lib/checkio.cpp b/lib/checkio.cpp index ba6e9696123..8bfd6b0cd9e 100644 --- a/lib/checkio.cpp +++ b/lib/checkio.cpp @@ -1601,7 +1601,8 @@ bool CheckIO::ArgumentInfo::isStdVectorOrString() typeToken = nameTok->tokAt(4); _template = true; return true; - } else if (Token::Match(nameTok, "std :: string|wstring")) { + } + if (Token::Match(nameTok, "std :: string|wstring")) { tempToken = new Token(); tempToken->fileIndex(variableInfo->typeStartToken()->fileIndex()); tempToken->linenr(variableInfo->typeStartToken()->linenr()); @@ -1647,16 +1648,19 @@ bool CheckIO::ArgumentInfo::isStdContainer(const Token *tok) if (variable->isStlType(stl_container)) { typeToken = variable->typeStartToken()->tokAt(4); return true; - } else if (variable->isStlType(stl_string)) { + } + if (variable->isStlType(stl_string)) { typeToken = variable->typeStartToken(); return true; - } else if (variable->type() && !variable->type()->derivedFrom.empty()) { + } + if (variable->type() && !variable->type()->derivedFrom.empty()) { for (const Type::BaseInfo &baseInfo : variable->type()->derivedFrom) { const Token* nameTok = baseInfo.nameTok; if (Token::Match(nameTok, "std :: vector|array|bitset|deque|list|forward_list|map|multimap|multiset|priority_queue|queue|set|stack|hash_map|hash_multimap|hash_set|unordered_map|unordered_multimap|unordered_set|unordered_multiset <")) { typeToken = nameTok->tokAt(4); return true; - } else if (Token::Match(nameTok, "std :: string|wstring")) { + } + if (Token::Match(nameTok, "std :: string|wstring")) { typeToken = nameTok; return true; } @@ -1671,15 +1675,15 @@ bool CheckIO::ArgumentInfo::isArrayOrPointer() const { if (address) return true; - else if (variableInfo && !_template) { + if (variableInfo && !_template) return variableInfo->isArrayOrPointer(); - } else { - const Token *tok = typeToken; - while (Token::Match(tok, "const|struct")) - tok = tok->next(); - if (tok && tok->strAt(1) == "*") - return true; - } + + const Token *tok = typeToken; + while (Token::Match(tok, "const|struct")) + tok = tok->next(); + if (tok && tok->strAt(1) == "*") + return true; + return false; } diff --git a/lib/checkleakautovar.cpp b/lib/checkleakautovar.cpp index ea5eae921dd..99c819a4a33 100644 --- a/lib/checkleakautovar.cpp +++ b/lib/checkleakautovar.cpp @@ -509,7 +509,8 @@ bool CheckLeakAutoVar::checkScope(const Token * const startToken, } if (tok3->str() == "(" && Token::Match(tok3->astOperand1(), "UNLIKELY|LIKELY")) { return ChildrenToVisit::op2; - } else if (tok3->str() == "(" && tok3->previous()->isName()) { + } + if (tok3->str() == "(" && tok3->previous()->isName()) { const std::vector params = getArguments(tok3->previous()); for (const Token *par : params) { if (!par->isComparisonOp()) diff --git a/lib/checkmemoryleak.cpp b/lib/checkmemoryleak.cpp index 534cc7e62e7..bb9e8f78f41 100644 --- a/lib/checkmemoryleak.cpp +++ b/lib/checkmemoryleak.cpp @@ -700,11 +700,10 @@ bool CheckMemoryLeakStructMember::isMalloc(const Variable *variable) const int declarationId(variable->declarationId()); bool alloc = false; for (const Token *tok2 = variable->nameToken(); tok2 && tok2 != variable->scope()->bodyEnd; tok2 = tok2->next()) { - if (Token::Match(tok2, "= %varid% [;=]", declarationId)) { + if (Token::Match(tok2, "= %varid% [;=]", declarationId)) return false; - } else if (Token::Match(tok2, "%varid% = malloc|kmalloc (", declarationId)) { + if (Token::Match(tok2, "%varid% = malloc|kmalloc (", declarationId)) // TODO use library alloc = true; - } } return alloc; } diff --git a/lib/checkstl.cpp b/lib/checkstl.cpp index 4fdfaa305f0..2720491fe09 100644 --- a/lib/checkstl.cpp +++ b/lib/checkstl.cpp @@ -428,11 +428,10 @@ static bool isIterator(const Variable *var, bool& inconclusiveType) // look for operator* and operator++ const Function* end = var->type()->getFunction("operator*"); const Function* incOperator = var->type()->getFunction("operator++"); - if (!end || end->argCount() > 0 || !incOperator) { + if (!end || end->argCount() > 0 || !incOperator) return false; - } else { - inconclusiveType = true; // heuristics only - } + + inconclusiveType = true; // heuristics only } return true; @@ -1617,8 +1616,7 @@ static const Token *findInsertValue(const Token *tok, const Token *containerTok, isSameExpression(true, true, keyTok, ikeyTok, library, true, true)) { if (ivalueTok) return ivalueTok; - else - return ikeyTok; + return ikeyTok; } return nullptr; } @@ -2029,7 +2027,8 @@ void CheckStl::string_c_str() search_tok->next()->variable() && search_tok->next()->variable()->isStlStringType()) { is_implicit_std_string = true; break; - } else if (Token::Match(search_tok, "+ std :: string|wstring (")) { + } + if (Token::Match(search_tok, "+ std :: string|wstring (")) { is_implicit_std_string = true; break; } @@ -2761,8 +2760,7 @@ namespace { return ""; if (alwaysTrue) return "std::any_of"; - else - return "std::all_of or std::none_of"; + return "std::all_of or std::none_of"; } return ""; } diff --git a/lib/forwardanalyzer.cpp b/lib/forwardanalyzer.cpp index 224d6e9ee06..5d8625052b2 100644 --- a/lib/forwardanalyzer.cpp +++ b/lib/forwardanalyzer.cpp @@ -124,11 +124,12 @@ struct ForwardTraversal { Progress traverseTok(T* tok, F f, bool traverseUnknown, T** out = nullptr) { if (Token::Match(tok, "asm|goto")) return Break(Analyzer::Terminate::Bail); - else if (Token::Match(tok, "setjmp|longjmp (")) { + if (Token::Match(tok, "setjmp|longjmp (")) { // Traverse the parameters of the function before escaping traverseRecursive(tok->next()->astOperand2(), f, traverseUnknown); return Break(Analyzer::Terminate::Bail); - } else if (Token::simpleMatch(tok, "continue")) { + } + if (Token::simpleMatch(tok, "continue")) { if (loopEnds.empty()) return Break(Analyzer::Terminate::Escape); // If we are in a loop then jump to the end diff --git a/lib/fwdanalysis.cpp b/lib/fwdanalysis.cpp index 83a1b511de0..3d6078c2d04 100644 --- a/lib/fwdanalysis.cpp +++ b/lib/fwdanalysis.cpp @@ -48,7 +48,7 @@ static bool isUnchanged(const Token *startToken, const Token *endToken, const st if (parent->astParent()) { if (parent->astParent()->tokType() == Token::Type::eIncDecOp) return false; - else if (parent->astParent()->isAssignmentOp() && parent == parent->astParent()->astOperand1()) + if (parent->astParent()->isAssignmentOp() && parent == parent->astParent()->astOperand1()) return false; } } @@ -321,15 +321,18 @@ struct FwdAnalysis::Result FwdAnalysis::checkRecursive(const Token *expr, const if (reassign) return Result(Result::Type::WRITE, parent->astParent()); return Result(Result::Type::READ); - } else if (mWhat == What::Reassign && parent->valueType() && parent->valueType()->pointer && Token::Match(parent->astParent(), "%assign%") && parent == parent->astParent()->astOperand1()) { + } + if (mWhat == What::Reassign && parent->valueType() && parent->valueType()->pointer && Token::Match(parent->astParent(), "%assign%") && parent == parent->astParent()->astOperand1()) return Result(Result::Type::READ); - } else if (Token::Match(parent->astParent(), "%assign%") && !parent->astParent()->astParent() && parent == parent->astParent()->astOperand1()) { + + if (Token::Match(parent->astParent(), "%assign%") && !parent->astParent()->astParent() && parent == parent->astParent()->astOperand1()) { if (mWhat == What::Reassign) return Result(Result::Type::BAILOUT, parent->astParent()); if (mWhat == What::UnusedValue && (!parent->valueType() || parent->valueType()->reference != Reference::None)) return Result(Result::Type::BAILOUT, parent->astParent()); continue; - } else if (mWhat == What::UnusedValue && parent->isUnaryOp("&") && Token::Match(parent->astParent(), "[,(]")) { + } + if (mWhat == What::UnusedValue && parent->isUnaryOp("&") && Token::Match(parent->astParent(), "[,(]")) { // Pass variable to function the writes it const Token *ftok = parent->astParent(); while (Token::simpleMatch(ftok, ",")) @@ -349,10 +352,9 @@ struct FwdAnalysis::Result FwdAnalysis::checkRecursive(const Token *expr, const } } return Result(Result::Type::BAILOUT, parent->astParent()); - } else { - // TODO: this is a quick bailout - return Result(Result::Type::BAILOUT, parent->astParent()); } + // TODO: this is a quick bailout + return Result(Result::Type::BAILOUT, parent->astParent()); } if (Token::Match(tok, ")|do {")) { diff --git a/lib/infer.cpp b/lib/infer.cpp index c925ef3bc3a..f3a2989f8be 100644 --- a/lib/infer.cpp +++ b/lib/infer.cpp @@ -227,8 +227,7 @@ struct Interval { if (!eq.empty()) { if (eq.front() == 0) return {1, -1}; - else - return {0}; + return {0}; } if (diff.isGreaterThan(-1, ref)) return {0, 1}; diff --git a/lib/library.cpp b/lib/library.cpp index 2f7c6e0dc65..fbdc281be19 100644 --- a/lib/library.cpp +++ b/lib/library.cpp @@ -138,59 +138,56 @@ Library::Error Library::load(const char exename[], const char path[]) if (error == tinyxml2::XML_ERROR_FILE_NOT_FOUND) return Error(ErrorCode::FILE_NOT_FOUND); - else { - doc.PrintError(); - return Error(ErrorCode::BAD_XML); - } + + doc.PrintError(); + return Error(ErrorCode::BAD_XML); } Library::Container::Yield Library::Container::yieldFrom(const std::string& yieldName) { if (yieldName == "at_index") return Container::Yield::AT_INDEX; - else if (yieldName == "item") + if (yieldName == "item") return Container::Yield::ITEM; - else if (yieldName == "buffer") + if (yieldName == "buffer") return Container::Yield::BUFFER; - else if (yieldName == "buffer-nt") + if (yieldName == "buffer-nt") return Container::Yield::BUFFER_NT; - else if (yieldName == "start-iterator") + if (yieldName == "start-iterator") return Container::Yield::START_ITERATOR; - else if (yieldName == "end-iterator") + if (yieldName == "end-iterator") return Container::Yield::END_ITERATOR; - else if (yieldName == "iterator") + if (yieldName == "iterator") return Container::Yield::ITERATOR; - else if (yieldName == "size") + if (yieldName == "size") return Container::Yield::SIZE; - else if (yieldName == "empty") + if (yieldName == "empty") return Container::Yield::EMPTY; - else - return Container::Yield::NO_YIELD; + return Container::Yield::NO_YIELD; } Library::Container::Action Library::Container::actionFrom(const std::string& actionName) { if (actionName == "resize") return Container::Action::RESIZE; - else if (actionName == "clear") + if (actionName == "clear") return Container::Action::CLEAR; - else if (actionName == "push") + if (actionName == "push") return Container::Action::PUSH; - else if (actionName == "pop") + if (actionName == "pop") return Container::Action::POP; - else if (actionName == "find") + if (actionName == "find") return Container::Action::FIND; - else if (actionName == "insert") + if (actionName == "insert") return Container::Action::INSERT; - else if (actionName == "erase") + if (actionName == "erase") return Container::Action::ERASE; - else if (actionName == "change-content") + if (actionName == "change-content") return Container::Action::CHANGE_CONTENT; - else if (actionName == "change-internal") + if (actionName == "change-internal") return Container::Action::CHANGE_INTERNAL; - else if (actionName == "change") + if (actionName == "change") return Container::Action::CHANGE; - else - return Container::Action::NO_ACTION; + return Container::Action::NO_ACTION; } // cppcheck-suppress unusedFunction - only used in unit tests @@ -878,10 +875,10 @@ Library::Error Library::loadFunction(const tinyxml2::XMLElement * const node, co } } else { const char * const message = functionnode->GetText(); - if (!message) { + if (!message) return Error(ErrorCode::MISSING_ATTRIBUTE, "\"reason\" and \"alternatives\" or some text."); - } else - wi.message = message; + + wi.message = message; } functionwarn[name] = wi; @@ -916,7 +913,7 @@ bool Library::isIntArgValid(const Token *ftok, int argnr, const MathLib::bigint const ArgumentChecks *ac = getarg(ftok, argnr); if (!ac || ac->valid.empty()) return true; - else if (ac->valid.find('.') != std::string::npos) + if (ac->valid.find('.') != std::string::npos) return isFloatArgValid(ftok, argnr, argvalue); TokenList tokenList(nullptr); gettokenlistfromvalid(ac->valid, tokenList); @@ -1440,8 +1437,7 @@ Library::ArgumentChecks::Direction Library::getArgDirection(const Token* ftok, i if (fs_argno >= 0 && argnr >= fs_argno) { if (formatstr_scan(ftok)) return ArgumentChecks::Direction::DIR_OUT; - else - return ArgumentChecks::Direction::DIR_IN; + return ArgumentChecks::Direction::DIR_IN; } } return ArgumentChecks::Direction::DIR_UNKNOWN; diff --git a/lib/mathlib.cpp b/lib/mathlib.cpp index c610d7ca5b6..501b6805b8f 100644 --- a/lib/mathlib.cpp +++ b/lib/mathlib.cpp @@ -335,8 +335,8 @@ MathLib::biguint MathLib::toULongNumber(const std::string & str) const double doubleval = toDoubleNumber(str); if (doubleval > (double)std::numeric_limits::max()) return std::numeric_limits::max(); - else // cast to bigint to avoid UBSAN warning about negative double being out-of-range - return static_cast(static_cast(doubleval)); + // cast to bigint to avoid UBSAN warning about negative double being out-of-range + return static_cast(static_cast(doubleval)); } if (isCharLiteral(str)) diff --git a/lib/path.cpp b/lib/path.cpp index 0c606cc4794..442d88f441f 100644 --- a/lib/path.cpp +++ b/lib/path.cpp @@ -185,7 +185,7 @@ std::string Path::getRelativePath(const std::string& absolutePath, const std::ve if (endsWith(bp,'/')) return absolutePath.substr(bp.length()); - else if (absolutePath.size() > bp.size() && absolutePath[bp.length()] == '/') + if (absolutePath.size() > bp.size() && absolutePath[bp.length()] == '/') return absolutePath.substr(bp.length() + 1); } return absolutePath; diff --git a/lib/pathanalysis.cpp b/lib/pathanalysis.cpp index 8ba4c8de7b0..0404dba58c4 100644 --- a/lib/pathanalysis.cpp +++ b/lib/pathanalysis.cpp @@ -87,11 +87,12 @@ PathAnalysis::Progress PathAnalysis::forwardRange(const Token* startToken, const for (const Token *tok = startToken; precedes(tok, endToken); tok = tok->next()) { if (Token::Match(tok, "asm|goto|break|continue")) return Progress::Break; - else if (Token::Match(tok, "return|throw")) { + if (Token::Match(tok, "return|throw")) { forwardRecursive(tok, info, f); return Progress::Break; // Evaluate RHS of assignment before LHS - } else if (const Token* assignTok = assignExpr(tok)) { + } + if (const Token* assignTok = assignExpr(tok)) { if (forwardRecursive(assignTok->astOperand2(), info, f) == Progress::Break) return Progress::Break; if (forwardRecursive(assignTok->astOperand1(), info, f) == Progress::Break) diff --git a/lib/reverseanalyzer.cpp b/lib/reverseanalyzer.cpp index 3436e380853..d85366a7134 100644 --- a/lib/reverseanalyzer.cpp +++ b/lib/reverseanalyzer.cpp @@ -114,8 +114,7 @@ struct ReverseTraversal { continueB &= update(tok); if (continueB) return ChildrenToVisit::op1_and_op2; - else - return ChildrenToVisit::done; + return ChildrenToVisit::done; }); return continueB; } @@ -302,7 +301,7 @@ struct ReverseTraversal { } if (thenAction.isModified() && inLoop) break; - else if (thenAction.isModified() && !elseAction.isModified()) + if (thenAction.isModified() && !elseAction.isModified()) analyzer->assume(condTok, hasElse); else if (elseAction.isModified() && !thenAction.isModified()) analyzer->assume(condTok, !hasElse); diff --git a/lib/tokenlist.cpp b/lib/tokenlist.cpp index 737065498b7..57eef4c71f7 100644 --- a/lib/tokenlist.cpp +++ b/lib/tokenlist.cpp @@ -1717,7 +1717,7 @@ void TokenList::validateAst() const if (tok->str() == "?") { if (!tok->astOperand1() || !tok->astOperand2()) throw InternalError(tok, "AST broken, ternary operator missing operand(s)", InternalError::AST); - else if (tok->astOperand2()->str() != ":") + if (tok->astOperand2()->str() != ":") throw InternalError(tok, "Syntax Error: AST broken, ternary operator lacks ':'.", InternalError::AST); } diff --git a/test/plistsingle_001_1982654442753025810.plist b/test/plistsingle_001_1982654442753025810.plist new file mode 100644 index 00000000000..cb62a9370ad --- /dev/null +++ b/test/plistsingle_001_1982654442753025810.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_001.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_002_10247957141852424771.plist b/test/plistsingle_002_10247957141852424771.plist new file mode 100644 index 00000000000..86707a56049 --- /dev/null +++ b/test/plistsingle_002_10247957141852424771.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_002.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_003_9890302464338082284.plist b/test/plistsingle_003_9890302464338082284.plist new file mode 100644 index 00000000000..325bd3851c8 --- /dev/null +++ b/test/plistsingle_003_9890302464338082284.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_003.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_004_12067882847020172541.plist b/test/plistsingle_004_12067882847020172541.plist new file mode 100644 index 00000000000..dceed29577a --- /dev/null +++ b/test/plistsingle_004_12067882847020172541.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_004.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_005_5630617244238936838.plist b/test/plistsingle_005_5630617244238936838.plist new file mode 100644 index 00000000000..f71be31fac5 --- /dev/null +++ b/test/plistsingle_005_5630617244238936838.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_005.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_006_16962063200094885239.plist b/test/plistsingle_006_16962063200094885239.plist new file mode 100644 index 00000000000..6e2849e4c56 --- /dev/null +++ b/test/plistsingle_006_16962063200094885239.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_006.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_007_4606220959910279904.plist b/test/plistsingle_007_4606220959910279904.plist new file mode 100644 index 00000000000..6a7842679b9 --- /dev/null +++ b/test/plistsingle_007_4606220959910279904.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_007.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_008_580374351944512977.plist b/test/plistsingle_008_580374351944512977.plist new file mode 100644 index 00000000000..ee79735aca5 --- /dev/null +++ b/test/plistsingle_008_580374351944512977.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_008.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_009_3198758014225338138.plist b/test/plistsingle_009_3198758014225338138.plist new file mode 100644 index 00000000000..62a396e8f92 --- /dev/null +++ b/test/plistsingle_009_3198758014225338138.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_009.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_010_16003424265815961552.plist b/test/plistsingle_010_16003424265815961552.plist new file mode 100644 index 00000000000..db515b711e5 --- /dev/null +++ b/test/plistsingle_010_16003424265815961552.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_010.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_011_4269509797141902503.plist b/test/plistsingle_011_4269509797141902503.plist new file mode 100644 index 00000000000..de4b7ce668e --- /dev/null +++ b/test/plistsingle_011_4269509797141902503.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_011.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_012_8017175502773619190.plist b/test/plistsingle_012_8017175502773619190.plist new file mode 100644 index 00000000000..0fbdb915a26 --- /dev/null +++ b/test/plistsingle_012_8017175502773619190.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_012.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_013_2332437477503628077.plist b/test/plistsingle_013_2332437477503628077.plist new file mode 100644 index 00000000000..772648cc7f5 --- /dev/null +++ b/test/plistsingle_013_2332437477503628077.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_013.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_014_9319752689436326364.plist b/test/plistsingle_014_9319752689436326364.plist new file mode 100644 index 00000000000..0880cbe8ea0 --- /dev/null +++ b/test/plistsingle_014_9319752689436326364.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_014.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_015_15757264582822281331.plist b/test/plistsingle_015_15757264582822281331.plist new file mode 100644 index 00000000000..686ad4ee6af --- /dev/null +++ b/test/plistsingle_015_15757264582822281331.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_015.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_016_10449069917159320642.plist b/test/plistsingle_016_10449069917159320642.plist new file mode 100644 index 00000000000..66b20f77ff9 --- /dev/null +++ b/test/plistsingle_016_10449069917159320642.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_016.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_017_16886581810545275609.plist b/test/plistsingle_017_16886581810545275609.plist new file mode 100644 index 00000000000..41abc120ff9 --- /dev/null +++ b/test/plistsingle_017_16886581810545275609.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_017.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_018_17272168241162376792.plist b/test/plistsingle_018_17272168241162376792.plist new file mode 100644 index 00000000000..f01d4520ebd --- /dev/null +++ b/test/plistsingle_018_17272168241162376792.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_018.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_019_17475290896456108015.plist b/test/plistsingle_019_17475290896456108015.plist new file mode 100644 index 00000000000..fd47b79472f --- /dev/null +++ b/test/plistsingle_019_17475290896456108015.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_019.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_020_12881590431036913615.plist b/test/plistsingle_020_12881590431036913615.plist new file mode 100644 index 00000000000..1a8e7faf474 --- /dev/null +++ b/test/plistsingle_020_12881590431036913615.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_020.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_021_6199195307864246328.plist b/test/plistsingle_021_6199195307864246328.plist new file mode 100644 index 00000000000..38577b220e8 --- /dev/null +++ b/test/plistsingle_021_6199195307864246328.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_021.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_022_16972094787750017237.plist b/test/plistsingle_022_16972094787750017237.plist new file mode 100644 index 00000000000..347bde4f563 --- /dev/null +++ b/test/plistsingle_022_16972094787750017237.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_022.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_023_16768972132456286014.plist b/test/plistsingle_023_16768972132456286014.plist new file mode 100644 index 00000000000..8e6d0bd78f1 --- /dev/null +++ b/test/plistsingle_023_16768972132456286014.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_023.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_024_15313484845422615067.plist b/test/plistsingle_024_15313484845422615067.plist new file mode 100644 index 00000000000..ba7260aecf5 --- /dev/null +++ b/test/plistsingle_024_15313484845422615067.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_024.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_025_2551232506378335300.plist b/test/plistsingle_025_2551232506378335300.plist new file mode 100644 index 00000000000..683c29efd9a --- /dev/null +++ b/test/plistsingle_025_2551232506378335300.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_025.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_026_4260846535019004001.plist b/test/plistsingle_026_4260846535019004001.plist new file mode 100644 index 00000000000..ee51e3c7682 --- /dev/null +++ b/test/plistsingle_026_4260846535019004001.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_026.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_027_3820512020493704554.plist b/test/plistsingle_027_3820512020493704554.plist new file mode 100644 index 00000000000..4f3ec0189e1 --- /dev/null +++ b/test/plistsingle_027_3820512020493704554.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_027.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_028_11451319586617536263.plist b/test/plistsingle_028_11451319586617536263.plist new file mode 100644 index 00000000000..65232169450 --- /dev/null +++ b/test/plistsingle_028_11451319586617536263.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_028.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_029_4983091736391934000.plist b/test/plistsingle_029_4983091736391934000.plist new file mode 100644 index 00000000000..3dcd20de2ad --- /dev/null +++ b/test/plistsingle_029_4983091736391934000.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_029.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_030_6812121053832316718.plist b/test/plistsingle_030_6812121053832316718.plist new file mode 100644 index 00000000000..602a8009bf8 --- /dev/null +++ b/test/plistsingle_030_6812121053832316718.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_030.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_031_6925173976536768901.plist b/test/plistsingle_031_6925173976536768901.plist new file mode 100644 index 00000000000..491965c8dae --- /dev/null +++ b/test/plistsingle_031_6925173976536768901.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_031.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_032_5460443177682812520.plist b/test/plistsingle_032_5460443177682812520.plist new file mode 100644 index 00000000000..20558317322 --- /dev/null +++ b/test/plistsingle_032_5460443177682812520.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_032.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_033_18222414041750270271.plist b/test/plistsingle_033_18222414041750270271.plist new file mode 100644 index 00000000000..5c2990cb97b --- /dev/null +++ b/test/plistsingle_033_18222414041750270271.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_033.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_034_98050179961959002.plist b/test/plistsingle_034_98050179961959002.plist new file mode 100644 index 00000000000..3f838400df8 --- /dev/null +++ b/test/plistsingle_034_98050179961959002.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_034.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_035_3469172525986645265.plist b/test/plistsingle_035_3469172525986645265.plist new file mode 100644 index 00000000000..f657195ea55 --- /dev/null +++ b/test/plistsingle_035_3469172525986645265.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_035.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_036_7892337592068513972.plist b/test/plistsingle_036_7892337592068513972.plist new file mode 100644 index 00000000000..dffc3cb0a54 --- /dev/null +++ b/test/plistsingle_036_7892337592068513972.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_036.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_037_11399061653955082123.plist b/test/plistsingle_037_11399061653955082123.plist new file mode 100644 index 00000000000..0601292072e --- /dev/null +++ b/test/plistsingle_037_11399061653955082123.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_037.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_038_8764298648067781446.plist b/test/plistsingle_038_8764298648067781446.plist new file mode 100644 index 00000000000..6acc9b549b0 --- /dev/null +++ b/test/plistsingle_038_8764298648067781446.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_038.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_039_8967456487733615421.plist b/test/plistsingle_039_8967456487733615421.plist new file mode 100644 index 00000000000..8dcabe7efd9 --- /dev/null +++ b/test/plistsingle_039_8967456487733615421.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_039.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_040_14177229776248449453.plist b/test/plistsingle_040_14177229776248449453.plist new file mode 100644 index 00000000000..d1822a4af2c --- /dev/null +++ b/test/plistsingle_040_14177229776248449453.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_040.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_041_1415223727808888950.plist b/test/plistsingle_041_1415223727808888950.plist new file mode 100644 index 00000000000..bfd7082b128 --- /dev/null +++ b/test/plistsingle_041_1415223727808888950.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_041.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_042_16114302095886723879.plist b/test/plistsingle_042_16114302095886723879.plist new file mode 100644 index 00000000000..af5d142e467 --- /dev/null +++ b/test/plistsingle_042_16114302095886723879.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_042.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_043_9401472490851231312.plist b/test/plistsingle_043_9401472490851231312.plist new file mode 100644 index 00000000000..cd0ca30f786 --- /dev/null +++ b/test/plistsingle_043_9401472490851231312.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_043.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_044_10284630035580545369.plist b/test/plistsingle_044_10284630035580545369.plist new file mode 100644 index 00000000000..c5e1d2d693e --- /dev/null +++ b/test/plistsingle_044_10284630035580545369.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_044.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_045_3847118142194590402.plist b/test/plistsingle_045_3847118142194590402.plist new file mode 100644 index 00000000000..0afed07c492 --- /dev/null +++ b/test/plistsingle_045_3847118142194590402.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_045.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_046_9155312807857551091.plist b/test/plistsingle_046_9155312807857551091.plist new file mode 100644 index 00000000000..743cb3d9420 --- /dev/null +++ b/test/plistsingle_046_9155312807857551091.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_046.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_047_2717800914471596124.plist b/test/plistsingle_047_2717800914471596124.plist new file mode 100644 index 00000000000..011c134b8df --- /dev/null +++ b/test/plistsingle_047_2717800914471596124.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_047.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_048_2943449993522940917.plist b/test/plistsingle_048_2943449993522940917.plist new file mode 100644 index 00000000000..6d84da16b1a --- /dev/null +++ b/test/plistsingle_048_2943449993522940917.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_048.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_049_14952682173846537566.plist b/test/plistsingle_049_14952682173846537566.plist new file mode 100644 index 00000000000..993568774d9 --- /dev/null +++ b/test/plistsingle_049_14952682173846537566.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_049.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_050_164674247843652948.plist b/test/plistsingle_050_164674247843652948.plist new file mode 100644 index 00000000000..f30eb8eeb36 --- /dev/null +++ b/test/plistsingle_050_164674247843652948.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_050.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_051_3671398309730221099.plist b/test/plistsingle_051_3671398309730221099.plist new file mode 100644 index 00000000000..d6b47d90e7c --- /dev/null +++ b/test/plistsingle_051_3671398309730221099.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_051.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_052_10625169558510862202.plist b/test/plistsingle_052_10625169558510862202.plist new file mode 100644 index 00000000000..09d692cd9f4 --- /dev/null +++ b/test/plistsingle_052_10625169558510862202.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_052.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_053_7761902666443324721.plist b/test/plistsingle_053_7761902666443324721.plist new file mode 100644 index 00000000000..76d2b9fa59e --- /dev/null +++ b/test/plistsingle_053_7761902666443324721.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_053.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_054_16179523907167503112.plist b/test/plistsingle_054_16179523907167503112.plist new file mode 100644 index 00000000000..e64af3827ea --- /dev/null +++ b/test/plistsingle_054_16179523907167503112.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_054.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_055_10302789346589621855.plist b/test/plistsingle_055_10302789346589621855.plist new file mode 100644 index 00000000000..977741e5a1d --- /dev/null +++ b/test/plistsingle_055_10302789346589621855.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_055.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_056_17339521907358041934.plist b/test/plistsingle_056_17339521907358041934.plist new file mode 100644 index 00000000000..1c9b091906d --- /dev/null +++ b/test/plistsingle_056_17339521907358041934.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_056.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_057_11654748697715948069.plist b/test/plistsingle_057_11654748697715948069.plist new file mode 100644 index 00000000000..f29b6bb5c2d --- /dev/null +++ b/test/plistsingle_057_11654748697715948069.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_057.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_058_5104359173006278476.plist b/test/plistsingle_058_5104359173006278476.plist new file mode 100644 index 00000000000..c1ad419d2fb --- /dev/null +++ b/test/plistsingle_058_5104359173006278476.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_058.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_059_17866611512050558243.plist b/test/plistsingle_059_17866611512050558243.plist new file mode 100644 index 00000000000..e18e5b5af69 --- /dev/null +++ b/test/plistsingle_059_17866611512050558243.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_059.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_060_13692926178100942867.plist b/test/plistsingle_060_13692926178100942867.plist new file mode 100644 index 00000000000..104bcd61ffa --- /dev/null +++ b/test/plistsingle_060_13692926178100942867.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_060.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_061_13244920293020499324.plist b/test/plistsingle_061_13244920293020499324.plist new file mode 100644 index 00000000000..f6feeb3a7fa --- /dev/null +++ b/test/plistsingle_061_13244920293020499324.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_061.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_062_2801849921142396665.plist b/test/plistsingle_062_2801849921142396665.plist new file mode 100644 index 00000000000..96f7f343872 --- /dev/null +++ b/test/plistsingle_062_2801849921142396665.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_062.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_063_14566198871679280994.plist b/test/plistsingle_063_14566198871679280994.plist new file mode 100644 index 00000000000..00fab31134d --- /dev/null +++ b/test/plistsingle_063_14566198871679280994.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_063.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_064_8194677400726075463.plist b/test/plistsingle_064_8194677400726075463.plist new file mode 100644 index 00000000000..95a3c28f694 --- /dev/null +++ b/test/plistsingle_064_8194677400726075463.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_064.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_065_1726731025477295216.plist b/test/plistsingle_065_1726731025477295216.plist new file mode 100644 index 00000000000..b94fb79a98d --- /dev/null +++ b/test/plistsingle_065_1726731025477295216.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_065.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_066_6257886556064623053.plist b/test/plistsingle_066_6257886556064623053.plist new file mode 100644 index 00000000000..2645395c117 --- /dev/null +++ b/test/plistsingle_066_6257886556064623053.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_066.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_067_12134304457293579542.plist b/test/plistsingle_067_12134304457293579542.plist new file mode 100644 index 00000000000..d1e050b62e5 --- /dev/null +++ b/test/plistsingle_067_12134304457293579542.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_067.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_068_11811959429744441947.plist b/test/plistsingle_068_11811959429744441947.plist new file mode 100644 index 00000000000..51a357f6d03 --- /dev/null +++ b/test/plistsingle_068_11811959429744441947.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_068.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_069_11507226631081024388.plist b/test/plistsingle_069_11507226631081024388.plist new file mode 100644 index 00000000000..cc6f099e90a --- /dev/null +++ b/test/plistsingle_069_11507226631081024388.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_069.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_070_13827446741497847186.plist b/test/plistsingle_070_13827446741497847186.plist new file mode 100644 index 00000000000..89cefe55a29 --- /dev/null +++ b/test/plistsingle_070_13827446741497847186.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_070.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_071_8142955006832575337.plist b/test/plistsingle_071_8142955006832575337.plist new file mode 100644 index 00000000000..90df4b8642b --- /dev/null +++ b/test/plistsingle_071_8142955006832575337.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_071.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_072_3288350689373352044.plist b/test/plistsingle_072_3288350689373352044.plist new file mode 100644 index 00000000000..3ffc48a4e2c --- /dev/null +++ b/test/plistsingle_072_3288350689373352044.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_072.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_073_3646005366887694531.plist b/test/plistsingle_073_3646005366887694531.plist new file mode 100644 index 00000000000..e5c75f0cb90 --- /dev/null +++ b/test/plistsingle_073_3646005366887694531.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_073.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_074_17475409542983758214.plist b/test/plistsingle_074_17475409542983758214.plist new file mode 100644 index 00000000000..82c923f6b6f --- /dev/null +++ b/test/plistsingle_074_17475409542983758214.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_074.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_075_5465931072055442301.plist b/test/plistsingle_075_5465931072055442301.plist new file mode 100644 index 00000000000..c75e431dec5 --- /dev/null +++ b/test/plistsingle_075_5465931072055442301.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_075.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_076_16451013258655101280.plist b/test/plistsingle_076_16451013258655101280.plist new file mode 100644 index 00000000000..e6eb1341369 --- /dev/null +++ b/test/plistsingle_076_16451013258655101280.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_076.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_077_10360111425130154999.plist b/test/plistsingle_077_10360111425130154999.plist new file mode 100644 index 00000000000..0f72ceb12a1 --- /dev/null +++ b/test/plistsingle_077_10360111425130154999.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_077.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_078_15043550312970159514.plist b/test/plistsingle_078_15043550312970159514.plist new file mode 100644 index 00000000000..bbf5576a116 --- /dev/null +++ b/test/plistsingle_078_15043550312970159514.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_078.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_079_12425166650689334353.plist b/test/plistsingle_079_12425166650689334353.plist new file mode 100644 index 00000000000..cf221d21edb --- /dev/null +++ b/test/plistsingle_079_12425166650689334353.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_079.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_080_17464750084948464481.plist b/test/plistsingle_080_17464750084948464481.plist new file mode 100644 index 00000000000..fa8c5db7ece --- /dev/null +++ b/test/plistsingle_080_17464750084948464481.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_080.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_081_17024415570423165034.plist b/test/plistsingle_081_17024415570423165034.plist new file mode 100644 index 00000000000..be6f6cf9579 --- /dev/null +++ b/test/plistsingle_081_17024415570423165034.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_081.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_082_10070644321642523931.plist b/test/plistsingle_082_10070644321642523931.plist new file mode 100644 index 00000000000..84e0dc9bf3a --- /dev/null +++ b/test/plistsingle_082_10070644321642523931.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_082.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_083_15755136056307795780.plist b/test/plistsingle_083_15755136056307795780.plist new file mode 100644 index 00000000000..1ff21f3b922 --- /dev/null +++ b/test/plistsingle_083_15755136056307795780.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_083.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_084_11729254263969926101.plist b/test/plistsingle_084_11729254263969926101.plist new file mode 100644 index 00000000000..2c5bec2f70b --- /dev/null +++ b/test/plistsingle_084_11729254263969926101.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_084.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_085_11526131608676194878.plist b/test/plistsingle_085_11526131608676194878.plist new file mode 100644 index 00000000000..de847ad5502 --- /dev/null +++ b/test/plistsingle_085_11526131608676194878.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_085.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_086_7638749907256822479.plist b/test/plistsingle_086_7638749907256822479.plist new file mode 100644 index 00000000000..35bd63d715f --- /dev/null +++ b/test/plistsingle_086_7638749907256822479.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_086.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_087_956354784084155192.plist b/test/plistsingle_087_956354784084155192.plist new file mode 100644 index 00000000000..13b108998e8 --- /dev/null +++ b/test/plistsingle_087_956354784084155192.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_087.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_088_815651583253766329.plist b/test/plistsingle_088_815651583253766329.plist new file mode 100644 index 00000000000..ccbadcaf7d5 --- /dev/null +++ b/test/plistsingle_088_815651583253766329.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_088.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_089_612528927960035106.plist b/test/plistsingle_089_612528927960035106.plist new file mode 100644 index 00000000000..82c96f075b6 --- /dev/null +++ b/test/plistsingle_089_612528927960035106.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_089.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_090_217602653902721384.plist b/test/plistsingle_090_217602653902721384.plist new file mode 100644 index 00000000000..08040f02e04 --- /dev/null +++ b/test/plistsingle_090_217602653902721384.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_090.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_091_12979573517970179135.plist b/test/plistsingle_091_12979573517970179135.plist new file mode 100644 index 00000000000..290a7ec6b17 --- /dev/null +++ b/test/plistsingle_091_12979573517970179135.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_091.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_092_1569280530052225582.plist b/test/plistsingle_092_1569280530052225582.plist new file mode 100644 index 00000000000..c0d303b4c33 --- /dev/null +++ b/test/plistsingle_092_1569280530052225582.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_092.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_093_1682333452756677765.plist b/test/plistsingle_093_1682333452756677765.plist new file mode 100644 index 00000000000..1cf71409a1a --- /dev/null +++ b/test/plistsingle_093_1682333452756677765.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_093.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_094_2649497068288422836.plist b/test/plistsingle_094_2649497068288422836.plist new file mode 100644 index 00000000000..021acde87ef --- /dev/null +++ b/test/plistsingle_094_2649497068288422836.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_094.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_095_6156221130174990987.plist b/test/plistsingle_095_6156221130174990987.plist new file mode 100644 index 00000000000..5dfcb990b8d --- /dev/null +++ b/test/plistsingle_095_6156221130174990987.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_095.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_096_13301953729891419482.plist b/test/plistsingle_096_13301953729891419482.plist new file mode 100644 index 00000000000..2bcfe39a11d --- /dev/null +++ b/test/plistsingle_096_13301953729891419482.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_096.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_097_16673076075916105745.plist b/test/plistsingle_097_16673076075916105745.plist new file mode 100644 index 00000000000..e40be88e615 --- /dev/null +++ b/test/plistsingle_097_16673076075916105745.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_097.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_098_14464814920766470944.plist b/test/plistsingle_098_14464814920766470944.plist new file mode 100644 index 00000000000..395f2c8525b --- /dev/null +++ b/test/plistsingle_098_14464814920766470944.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_098.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_099_8618796317028236983.plist b/test/plistsingle_099_8618796317028236983.plist new file mode 100644 index 00000000000..66a6aa0b5be --- /dev/null +++ b/test/plistsingle_099_8618796317028236983.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_099.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_100_1323296195754830746.plist b/test/plistsingle_100_1323296195754830746.plist new file mode 100644 index 00000000000..dd5a8f3eb6c --- /dev/null +++ b/test/plistsingle_100_1323296195754830746.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_100.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_2_10715338952105027795.plist b/test/plistsingle_2_10715338952105027795.plist new file mode 100644 index 00000000000..58176d2ecc4 --- /dev/null +++ b/test/plistsingle_2_10715338952105027795.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_2.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsingle_4_15737255920495926157.plist b/test/plistsingle_4_15737255920495926157.plist new file mode 100644 index 00000000000..46ad2323892 --- /dev/null +++ b/test/plistsingle_4_15737255920495926157.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + single_4.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_001_13988868595647931277.plist b/test/plistsinglefs_001_13988868595647931277.plist new file mode 100644 index 00000000000..29eb609ceb1 --- /dev/null +++ b/test/plistsinglefs_001_13988868595647931277.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_001.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_002_9212829835273891120.plist b/test/plistsinglefs_002_9212829835273891120.plist new file mode 100644 index 00000000000..282bf76176e --- /dev/null +++ b/test/plistsinglefs_002_9212829835273891120.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_002.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_003_15681057685499493383.plist b/test/plistsinglefs_003_15681057685499493383.plist new file mode 100644 index 00000000000..e763d98adc4 --- /dev/null +++ b/test/plistsinglefs_003_15681057685499493383.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_003.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_004_10085107550622083362.plist b/test/plistsinglefs_004_10085107550622083362.plist new file mode 100644 index 00000000000..b525bc47728 --- /dev/null +++ b/test/plistsinglefs_004_10085107550622083362.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_004.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_005_10288230205915814585.plist b/test/plistsinglefs_005_10288230205915814585.plist new file mode 100644 index 00000000000..fe05b114b38 --- /dev/null +++ b/test/plistsinglefs_005_10288230205915814585.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_005.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_006_2529439733871077948.plist b/test/plistsinglefs_006_2529439733871077948.plist new file mode 100644 index 00000000000..815fe9c4b61 --- /dev/null +++ b/test/plistsinglefs_006_2529439733871077948.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_006.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_007_8966951627257032915.plist b/test/plistsinglefs_007_8966951627257032915.plist new file mode 100644 index 00000000000..2513ad14281 --- /dev/null +++ b/test/plistsinglefs_007_8966951627257032915.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_007.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_008_2551966157628691518.plist b/test/plistsinglefs_008_2551966157628691518.plist new file mode 100644 index 00000000000..1f71c2860e9 --- /dev/null +++ b/test/plistsinglefs_008_2551966157628691518.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_008.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_009_2755088812922422741.plist b/test/plistsinglefs_009_2755088812922422741.plist new file mode 100644 index 00000000000..2164564c77c --- /dev/null +++ b/test/plistsinglefs_009_2755088812922422741.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_009.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_010_10363711595465424215.plist b/test/plistsinglefs_010_10363711595465424215.plist new file mode 100644 index 00000000000..31fa64158c9 --- /dev/null +++ b/test/plistsinglefs_010_10363711595465424215.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_010.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_011_16017768848267870784.plist b/test/plistsinglefs_011_16017768848267870784.plist new file mode 100644 index 00000000000..b66027b48f9 --- /dev/null +++ b/test/plistsinglefs_011_16017768848267870784.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_011.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_012_5277569891454924125.plist b/test/plistsinglefs_012_5277569891454924125.plist new file mode 100644 index 00000000000..3a12b941fad --- /dev/null +++ b/test/plistsinglefs_012_5277569891454924125.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_012.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_013_17286766887406418022.plist b/test/plistsinglefs_013_17286766887406418022.plist new file mode 100644 index 00000000000..4c9fa01c7ef --- /dev/null +++ b/test/plistsinglefs_013_17286766887406418022.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_013.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_014_3649605537222963747.plist b/test/plistsinglefs_014_3649605537222963747.plist new file mode 100644 index 00000000000..1f91240f160 --- /dev/null +++ b/test/plistsinglefs_014_3649605537222963747.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_014.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_015_9334097271888235596.plist b/test/plistsinglefs_015_9334097271888235596.plist new file mode 100644 index 00000000000..a27c59295b6 --- /dev/null +++ b/test/plistsinglefs_015_9334097271888235596.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_015.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_016_13943818359560746569.plist b/test/plistsinglefs_016_13943818359560746569.plist new file mode 100644 index 00000000000..d5b23ea41ca --- /dev/null +++ b/test/plistsinglefs_016_13943818359560746569.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_016.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_017_13831046911833116402.plist b/test/plistsinglefs_017_13831046911833116402.plist new file mode 100644 index 00000000000..3ebee2367cf --- /dev/null +++ b/test/plistsinglefs_017_13831046911833116402.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_017.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_018_14532527445471578975.plist b/test/plistsinglefs_018_14532527445471578975.plist new file mode 100644 index 00000000000..e05f8a5910a --- /dev/null +++ b/test/plistsinglefs_018_14532527445471578975.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_018.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_019_1962517932339908616.plist b/test/plistsinglefs_019_1962517932339908616.plist new file mode 100644 index 00000000000..e0d8fcb12f4 --- /dev/null +++ b/test/plistsinglefs_019_1962517932339908616.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_019.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_020_18156315275994242456.plist b/test/plistsinglefs_020_18156315275994242456.plist new file mode 100644 index 00000000000..b5744ad4e33 --- /dev/null +++ b/test/plistsinglefs_020_18156315275994242456.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_020.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_021_6147083095670645807.plist b/test/plistsinglefs_021_6147083095670645807.plist new file mode 100644 index 00000000000..c719987d4ed --- /dev/null +++ b/test/plistsinglefs_021_6147083095670645807.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_021.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_022_10471590852789339934.plist b/test/plistsinglefs_022_10471590852789339934.plist new file mode 100644 index 00000000000..0b723420ed3 --- /dev/null +++ b/test/plistsinglefs_022_10471590852789339934.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_022.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_023_16909102746175294901.plist b/test/plistsinglefs_023_16909102746175294901.plist new file mode 100644 index 00000000000..e5c955d0865 --- /dev/null +++ b/test/plistsinglefs_023_16909102746175294901.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_023.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_024_14700595300420940836.plist b/test/plistsinglefs_024_14700595300420940836.plist new file mode 100644 index 00000000000..57e39d76655 --- /dev/null +++ b/test/plistsinglefs_024_14700595300420940836.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_024.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_025_8823860739843059579.plist b/test/plistsinglefs_025_8823860739843059579.plist new file mode 100644 index 00000000000..2c6ecef41a5 --- /dev/null +++ b/test/plistsinglefs_025_8823860739843059579.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_025.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_026_3512355274155447882.plist b/test/plistsinglefs_026_3512355274155447882.plist new file mode 100644 index 00000000000..fcfdb211d8f --- /dev/null +++ b/test/plistsinglefs_026_3512355274155447882.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_026.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_027_16165326099274897217.plist b/test/plistsinglefs_027_16165326099274897217.plist new file mode 100644 index 00000000000..462a7b3f497 --- /dev/null +++ b/test/plistsinglefs_027_16165326099274897217.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_027.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_028_4920099694817211664.plist b/test/plistsinglefs_028_4920099694817211664.plist new file mode 100644 index 00000000000..7b4dd11a734 --- /dev/null +++ b/test/plistsinglefs_028_4920099694817211664.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_028.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_029_5153938306950590183.plist b/test/plistsinglefs_029_5153938306950590183.plist new file mode 100644 index 00000000000..2644e535d69 --- /dev/null +++ b/test/plistsinglefs_029_5153938306950590183.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_029.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_030_7698910624868602385.plist b/test/plistsinglefs_030_7698910624868602385.plist new file mode 100644 index 00000000000..c439c9667ef --- /dev/null +++ b/test/plistsinglefs_030_7698910624868602385.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_030.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_031_4327788278843916122.plist b/test/plistsinglefs_031_4327788278843916122.plist new file mode 100644 index 00000000000..1ff10f2fcfa --- /dev/null +++ b/test/plistsinglefs_031_4327788278843916122.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_031.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_032_15628799752837039243.plist b/test/plistsinglefs_032_15628799752837039243.plist new file mode 100644 index 00000000000..4c72487084f --- /dev/null +++ b/test/plistsinglefs_032_15628799752837039243.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_032.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_033_12122075690950471092.plist b/test/plistsinglefs_033_12122075690950471092.plist new file mode 100644 index 00000000000..5cfa06b53be --- /dev/null +++ b/test/plistsinglefs_033_12122075690950471092.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_033.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_034_11154912075418726021.plist b/test/plistsinglefs_034_11154912075418726021.plist new file mode 100644 index 00000000000..4f377124edf --- /dev/null +++ b/test/plistsinglefs_034_11154912075418726021.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_034.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_035_11041859152714273838.plist b/test/plistsinglefs_035_11041859152714273838.plist new file mode 100644 index 00000000000..98086860e51 --- /dev/null +++ b/test/plistsinglefs_035_11041859152714273838.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_035.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_036_4005408066922675775.plist b/test/plistsinglefs_036_4005408066922675775.plist new file mode 100644 index 00000000000..b02698958f3 --- /dev/null +++ b/test/plistsinglefs_036_4005408066922675775.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_036.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_037_9690181276564769640.plist b/test/plistsinglefs_037_9690181276564769640.plist new file mode 100644 index 00000000000..512d69a2f51 --- /dev/null +++ b/test/plistsinglefs_037_9690181276564769640.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_037.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_038_3416698981011843369.plist b/test/plistsinglefs_038_3416698981011843369.plist new file mode 100644 index 00000000000..80b049e3aaf --- /dev/null +++ b/test/plistsinglefs_038_3416698981011843369.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_038.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_039_9101472190653937234.plist b/test/plistsinglefs_039_9101472190653937234.plist new file mode 100644 index 00000000000..6502bba03d6 --- /dev/null +++ b/test/plistsinglefs_039_9101472190653937234.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_039.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_040_16172580577588737498.plist b/test/plistsinglefs_040_16172580577588737498.plist new file mode 100644 index 00000000000..fc011b0fd02 --- /dev/null +++ b/test/plistsinglefs_040_16172580577588737498.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_040.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_041_1096958849903872145.plist b/test/plistsinglefs_041_1096958849903872145.plist new file mode 100644 index 00000000000..0bfad0f6418 --- /dev/null +++ b/test/plistsinglefs_041_1096958849903872145.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_041.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_042_5520123915985740852.plist b/test/plistsinglefs_042_5520123915985740852.plist new file mode 100644 index 00000000000..49a38774f31 --- /dev/null +++ b/test/plistsinglefs_042_5520123915985740852.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_042.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_043_9026847977872309003.plist b/test/plistsinglefs_043_9026847977872309003.plist new file mode 100644 index 00000000000..caf5dd7a6fe --- /dev/null +++ b/test/plistsinglefs_043_9026847977872309003.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_043.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_044_4439907377749543598.plist b/test/plistsinglefs_044_4439907377749543598.plist new file mode 100644 index 00000000000..89edfc5afb8 --- /dev/null +++ b/test/plistsinglefs_044_4439907377749543598.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_044.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_045_4552960300453995781.plist b/test/plistsinglefs_045_4552960300453995781.plist new file mode 100644 index 00000000000..56befa2698f --- /dev/null +++ b/test/plistsinglefs_045_4552960300453995781.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_045.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_046_3088229501600039400.plist b/test/plistsinglefs_046_3088229501600039400.plist new file mode 100644 index 00000000000..519818b7df8 --- /dev/null +++ b/test/plistsinglefs_046_3088229501600039400.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_046.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_047_15850200365667497151.plist b/test/plistsinglefs_047_15850200365667497151.plist new file mode 100644 index 00000000000..513e0459383 --- /dev/null +++ b/test/plistsinglefs_047_15850200365667497151.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_047.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_048_2499520415689206994.plist b/test/plistsinglefs_048_2499520415689206994.plist new file mode 100644 index 00000000000..627a9121ed4 --- /dev/null +++ b/test/plistsinglefs_048_2499520415689206994.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_048.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_049_15261491279756664745.plist b/test/plistsinglefs_049_15261491279756664745.plist new file mode 100644 index 00000000000..6b0b53fca5c --- /dev/null +++ b/test/plistsinglefs_049_15261491279756664745.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_049.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_050_12941271169339841947.plist b/test/plistsinglefs_050_12941271169339841947.plist new file mode 100644 index 00000000000..c7edbf57dfa --- /dev/null +++ b/test/plistsinglefs_050_12941271169339841947.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_050.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_051_179018830295562180.plist b/test/plistsinglefs_051_179018830295562180.plist new file mode 100644 index 00000000000..7ebd0982a5b --- /dev/null +++ b/test/plistsinglefs_051_179018830295562180.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_051.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_052_1888632858936230881.plist b/test/plistsinglefs_052_1888632858936230881.plist new file mode 100644 index 00000000000..06785445dc4 --- /dev/null +++ b/test/plistsinglefs_052_1888632858936230881.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_052.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_053_1448298344410931434.plist b/test/plistsinglefs_053_1448298344410931434.plist new file mode 100644 index 00000000000..71c3fdfdb00 --- /dev/null +++ b/test/plistsinglefs_053_1448298344410931434.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_053.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_054_10509376754954140495.plist b/test/plistsinglefs_054_10509376754954140495.plist new file mode 100644 index 00000000000..fad778a5f12 --- /dev/null +++ b/test/plistsinglefs_054_10509376754954140495.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_054.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_055_3826981631781473208.plist b/test/plistsinglefs_055_3826981631781473208.plist new file mode 100644 index 00000000000..0ac6f1c98df --- /dev/null +++ b/test/plistsinglefs_055_3826981631781473208.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_055.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_056_14599881111667244117.plist b/test/plistsinglefs_056_14599881111667244117.plist new file mode 100644 index 00000000000..e7d3b274469 --- /dev/null +++ b/test/plistsinglefs_056_14599881111667244117.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_056.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_057_14396758456373512894.plist b/test/plistsinglefs_057_14396758456373512894.plist new file mode 100644 index 00000000000..f8eb984b967 --- /dev/null +++ b/test/plistsinglefs_057_14396758456373512894.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_057.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_058_2364999852292302675.plist b/test/plistsinglefs_058_2364999852292302675.plist new file mode 100644 index 00000000000..f77b2198a1d --- /dev/null +++ b/test/plistsinglefs_058_2364999852292302675.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_058.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_059_14374232032615899324.plist b/test/plistsinglefs_059_14374232032615899324.plist new file mode 100644 index 00000000000..2e007cce487 --- /dev/null +++ b/test/plistsinglefs_059_14374232032615899324.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_059.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_060_6947539013353553244.plist b/test/plistsinglefs_060_6947539013353553244.plist new file mode 100644 index 00000000000..71711029416 --- /dev/null +++ b/test/plistsinglefs_060_6947539013353553244.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_060.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_061_13385050906739508211.plist b/test/plistsinglefs_061_13385050906739508211.plist new file mode 100644 index 00000000000..e8e06a60f27 --- /dev/null +++ b/test/plistsinglefs_061_13385050906739508211.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_061.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_062_8076856241076547522.plist b/test/plistsinglefs_062_8076856241076547522.plist new file mode 100644 index 00000000000..0356af519d5 --- /dev/null +++ b/test/plistsinglefs_062_8076856241076547522.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_062.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_063_14514368134462502489.plist b/test/plistsinglefs_063_14514368134462502489.plist new file mode 100644 index 00000000000..a1d923e5fc0 --- /dev/null +++ b/test/plistsinglefs_063_14514368134462502489.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_063.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_064_13631210589733188432.plist b/test/plistsinglefs_064_13631210589733188432.plist new file mode 100644 index 00000000000..7750330dcfe --- /dev/null +++ b/test/plistsinglefs_064_13631210589733188432.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_064.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_065_1897296121059129383.plist b/test/plistsinglefs_065_1897296121059129383.plist new file mode 100644 index 00000000000..d0c563cd3ac --- /dev/null +++ b/test/plistsinglefs_065_1897296121059129383.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_065.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_066_5644961826690846070.plist b/test/plistsinglefs_066_5644961826690846070.plist new file mode 100644 index 00000000000..1f55ac388f9 --- /dev/null +++ b/test/plistsinglefs_066_5644961826690846070.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_066.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_067_18406967875130406573.plist b/test/plistsinglefs_067_18406967875130406573.plist new file mode 100644 index 00000000000..ffda9c65196 --- /dev/null +++ b/test/plistsinglefs_067_18406967875130406573.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_067.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_068_11199069884742767716.plist b/test/plistsinglefs_068_11199069884742767716.plist new file mode 100644 index 00000000000..05e14f9f0ff --- /dev/null +++ b/test/plistsinglefs_068_11199069884742767716.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_068.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_069_5322616799141708475.plist b/test/plistsinglefs_069_5322616799141708475.plist new file mode 100644 index 00000000000..c5c9009ee80 --- /dev/null +++ b/test/plistsinglefs_069_5322616799141708475.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_069.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_070_10307150971210564661.plist b/test/plistsinglefs_070_10307150971210564661.plist new file mode 100644 index 00000000000..b774695ef82 --- /dev/null +++ b/test/plistsinglefs_070_10307150971210564661.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_070.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_071_3869639077824609694.plist b/test/plistsinglefs_071_3869639077824609694.plist new file mode 100644 index 00000000000..a31f1d2b9e6 --- /dev/null +++ b/test/plistsinglefs_071_3869639077824609694.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_071.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_072_17991875394415467183.plist b/test/plistsinglefs_072_17991875394415467183.plist new file mode 100644 index 00000000000..0c547c9abbc --- /dev/null +++ b/test/plistsinglefs_072_17991875394415467183.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_072.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_073_11554363501029512216.plist b/test/plistsinglefs_073_11554363501029512216.plist new file mode 100644 index 00000000000..1435e2501e6 --- /dev/null +++ b/test/plistsinglefs_073_11554363501029512216.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_073.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_074_9563374324310166977.plist b/test/plistsinglefs_074_9563374324310166977.plist new file mode 100644 index 00000000000..16e836ba500 --- /dev/null +++ b/test/plistsinglefs_074_9563374324310166977.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_074.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_075_15357147572900269258.plist b/test/plistsinglefs_075_15357147572900269258.plist new file mode 100644 index 00000000000..8a23f74ed48 --- /dev/null +++ b/test/plistsinglefs_075_15357147572900269258.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_075.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_076_2221908964878329339.plist b/test/plistsinglefs_076_2221908964878329339.plist new file mode 100644 index 00000000000..6b34ce2a141 --- /dev/null +++ b/test/plistsinglefs_076_2221908964878329339.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_076.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_077_8098643525456210596.plist b/test/plistsinglefs_077_8098643525456210596.plist new file mode 100644 index 00000000000..e1d217601ad --- /dev/null +++ b/test/plistsinglefs_077_8098643525456210596.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_077.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_078_2849303450439809261.plist b/test/plistsinglefs_078_2849303450439809261.plist new file mode 100644 index 00000000000..37e9be9bad5 --- /dev/null +++ b/test/plistsinglefs_078_2849303450439809261.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_078.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_079_2544535467404288950.plist b/test/plistsinglefs_079_2544535467404288950.plist new file mode 100644 index 00000000000..759272364ff --- /dev/null +++ b/test/plistsinglefs_079_2544535467404288950.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_079.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_080_15714431376569431070.plist b/test/plistsinglefs_080_15714431376569431070.plist new file mode 100644 index 00000000000..bd02d3f9f45 --- /dev/null +++ b/test/plistsinglefs_080_15714431376569431070.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_080.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_081_3705199196245834421.plist b/test/plistsinglefs_081_3705199196245834421.plist new file mode 100644 index 00000000000..abbcb46c489 --- /dev/null +++ b/test/plistsinglefs_081_3705199196245834421.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_081.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_082_4952411726064781976.plist b/test/plistsinglefs_082_4952411726064781976.plist new file mode 100644 index 00000000000..085d6a7e655 --- /dev/null +++ b/test/plistsinglefs_082_4952411726064781976.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_082.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_083_11389923619450736943.plist b/test/plistsinglefs_083_11389923619450736943.plist new file mode 100644 index 00000000000..dbaa1e52483 --- /dev/null +++ b/test/plistsinglefs_083_11389923619450736943.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_083.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_084_8755195797935539018.plist b/test/plistsinglefs_084_8755195797935539018.plist new file mode 100644 index 00000000000..d5ec0c5f9cb --- /dev/null +++ b/test/plistsinglefs_084_8755195797935539018.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_084.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_085_2961422549345436737.plist b/test/plistsinglefs_085_2961422549345436737.plist new file mode 100644 index 00000000000..3dc2f754ba8 --- /dev/null +++ b/test/plistsinglefs_085_2961422549345436737.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_085.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_086_1496691750491480356.plist b/test/plistsinglefs_086_1496691750491480356.plist new file mode 100644 index 00000000000..79e21df1143 --- /dev/null +++ b/test/plistsinglefs_086_1496691750491480356.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_086.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_087_14066701263623150715.plist b/test/plistsinglefs_087_14066701263623150715.plist new file mode 100644 index 00000000000..04478f2c45c --- /dev/null +++ b/test/plistsinglefs_087_14066701263623150715.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_087.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_088_14389327766149110326.plist b/test/plistsinglefs_088_14389327766149110326.plist new file mode 100644 index 00000000000..0393934864e --- /dev/null +++ b/test/plistsinglefs_088_14389327766149110326.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_088.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_089_14694095749184630637.plist b/test/plistsinglefs_089_14694095749184630637.plist new file mode 100644 index 00000000000..0110cb39905 --- /dev/null +++ b/test/plistsinglefs_089_14694095749184630637.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_089.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_090_9248248590702766911.plist b/test/plistsinglefs_090_9248248590702766911.plist new file mode 100644 index 00000000000..fae9c1f3d16 --- /dev/null +++ b/test/plistsinglefs_090_9248248590702766911.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_090.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_091_14933021800344860776.plist b/test/plistsinglefs_091_14933021800344860776.plist new file mode 100644 index 00000000000..872a9a1cd00 --- /dev/null +++ b/test/plistsinglefs_091_14933021800344860776.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_091.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_092_16397752599198817157.plist b/test/plistsinglefs_092_16397752599198817157.plist new file mode 100644 index 00000000000..ce1f4122215 --- /dev/null +++ b/test/plistsinglefs_092_16397752599198817157.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_092.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_093_16284699676494364974.plist b/test/plistsinglefs_093_16284699676494364974.plist new file mode 100644 index 00000000000..2cf6771364e --- /dev/null +++ b/test/plistsinglefs_093_16284699676494364974.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_093.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_094_2424896202907578763.plist b/test/plistsinglefs_094_2424896202907578763.plist new file mode 100644 index 00000000000..7bdb60ef977 --- /dev/null +++ b/test/plistsinglefs_094_2424896202907578763.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_094.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_095_17364916214730562228.plist b/test/plistsinglefs_095_17364916214730562228.plist new file mode 100644 index 00000000000..1fd5b367041 --- /dev/null +++ b/test/plistsinglefs_095_17364916214730562228.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_095.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_096_12941751148648693521.plist b/test/plistsinglefs_096_12941751148648693521.plist new file mode 100644 index 00000000000..384e12a83db --- /dev/null +++ b/test/plistsinglefs_096_12941751148648693521.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_096.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_097_9570628802624007258.plist b/test/plistsinglefs_097_9570628802624007258.plist new file mode 100644 index 00000000000..d402b49fae6 --- /dev/null +++ b/test/plistsinglefs_097_9570628802624007258.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_097.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_098_4887471389760824759.plist b/test/plistsinglefs_098_4887471389760824759.plist new file mode 100644 index 00000000000..81ed3ae0e2f --- /dev/null +++ b/test/plistsinglefs_098_4887471389760824759.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_098.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_099_10733489993499058720.plist b/test/plistsinglefs_099_10733489993499058720.plist new file mode 100644 index 00000000000..4c923ea4dd6 --- /dev/null +++ b/test/plistsinglefs_099_10733489993499058720.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_099.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_100_9929666059625854277.plist b/test/plistsinglefs_100_9929666059625854277.plist new file mode 100644 index 00000000000..1d6f0e92d88 --- /dev/null +++ b/test/plistsinglefs_100_9929666059625854277.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_100.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_2_5071803044175591832.plist b/test/plistsinglefs_2_5071803044175591832.plist new file mode 100644 index 00000000000..8052af488e3 --- /dev/null +++ b/test/plistsinglefs_2_5071803044175591832.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_2.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistsinglefs_4_8874587116046348874.plist b/test/plistsinglefs_4_8874587116046348874.plist new file mode 100644 index 00000000000..f74115e31bc --- /dev/null +++ b/test/plistsinglefs_4_8874587116046348874.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + singlefs_4.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_100_5268126128994548098.plist b/test/plistthread_100_5268126128994548098.plist new file mode 100644 index 00000000000..7010202f2f5 --- /dev/null +++ b/test/plistthread_100_5268126128994548098.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_100.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_10_7575256409926221148.plist b/test/plistthread_10_7575256409926221148.plist new file mode 100644 index 00000000000..fa64c5db8ea --- /dev/null +++ b/test/plistthread_10_7575256409926221148.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_10.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_11_14012768303312176115.plist b/test/plistthread_11_14012768303312176115.plist new file mode 100644 index 00000000000..eca109207b0 --- /dev/null +++ b/test/plistthread_11_14012768303312176115.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_11.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_12_8704573637649215426.plist b/test/plistthread_12_8704573637649215426.plist new file mode 100644 index 00000000000..1a822528238 --- /dev/null +++ b/test/plistthread_12_8704573637649215426.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_12.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_13_15142085531035170393.plist b/test/plistthread_13_15142085531035170393.plist new file mode 100644 index 00000000000..dfc9dfbe8f9 --- /dev/null +++ b/test/plistthread_13_15142085531035170393.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_13.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_14_14258927986305856336.plist b/test/plistthread_14_14258927986305856336.plist new file mode 100644 index 00000000000..f8c78e780db --- /dev/null +++ b/test/plistthread_14_14258927986305856336.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_14.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_15_2525013517631797287.plist b/test/plistthread_15_2525013517631797287.plist new file mode 100644 index 00000000000..2d4b9c6ce08 --- /dev/null +++ b/test/plistthread_15_2525013517631797287.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_15.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_16_6272679223263513974.plist b/test/plistthread_16_6272679223263513974.plist new file mode 100644 index 00000000000..06eb8837bbd --- /dev/null +++ b/test/plistthread_16_6272679223263513974.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_16.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_17_587941197993522861.plist b/test/plistthread_17_587941197993522861.plist new file mode 100644 index 00000000000..4dafa2d58e7 --- /dev/null +++ b/test/plistthread_17_587941197993522861.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_17.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_18_11826787281315435620.plist b/test/plistthread_18_11826787281315435620.plist new file mode 100644 index 00000000000..c26e59c8e52 --- /dev/null +++ b/test/plistthread_18_11826787281315435620.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_18.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_19_5950334195714376379.plist b/test/plistthread_19_5950334195714376379.plist new file mode 100644 index 00000000000..eabc8b6ef3a --- /dev/null +++ b/test/plistthread_19_5950334195714376379.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_19.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_1_14399305487663705930.plist b/test/plistthread_1_14399305487663705930.plist new file mode 100644 index 00000000000..6384d828f53 --- /dev/null +++ b/test/plistthread_1_14399305487663705930.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_1.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_20_13568988565912509851.plist b/test/plistthread_20_13568988565912509851.plist new file mode 100644 index 00000000000..57eb1b68726 --- /dev/null +++ b/test/plistthread_20_13568988565912509851.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_20.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_21_806736226868230084.plist b/test/plistthread_21_806736226868230084.plist new file mode 100644 index 00000000000..fddc00b210e --- /dev/null +++ b/test/plistthread_21_806736226868230084.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_21.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_22_2516350255508898785.plist b/test/plistthread_22_2516350255508898785.plist new file mode 100644 index 00000000000..c80a15d2cc7 --- /dev/null +++ b/test/plistthread_22_2516350255508898785.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_22.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_23_2076015740983599338.plist b/test/plistthread_23_2076015740983599338.plist new file mode 100644 index 00000000000..db4f0b8cb3c --- /dev/null +++ b/test/plistthread_23_2076015740983599338.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_23.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_24_11137094151526808399.plist b/test/plistthread_24_11137094151526808399.plist new file mode 100644 index 00000000000..f6a056415bc --- /dev/null +++ b/test/plistthread_24_11137094151526808399.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_24.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_25_4454699028354141112.plist b/test/plistthread_25_4454699028354141112.plist new file mode 100644 index 00000000000..a0bb8588aae --- /dev/null +++ b/test/plistthread_25_4454699028354141112.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_25.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_26_15227598508239912021.plist b/test/plistthread_26_15227598508239912021.plist new file mode 100644 index 00000000000..b60fb3c5a6b --- /dev/null +++ b/test/plistthread_26_15227598508239912021.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_26.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_27_15024475852946180798.plist b/test/plistthread_27_15024475852946180798.plist new file mode 100644 index 00000000000..d61ca05629d --- /dev/null +++ b/test/plistthread_27_15024475852946180798.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_27.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_28_2992717248864970579.plist b/test/plistthread_28_2992717248864970579.plist new file mode 100644 index 00000000000..35ec39b25f9 --- /dev/null +++ b/test/plistthread_28_2992717248864970579.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_28.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_29_15001949429188567228.plist b/test/plistthread_29_15001949429188567228.plist new file mode 100644 index 00000000000..2afe8b5f3d6 --- /dev/null +++ b/test/plistthread_29_15001949429188567228.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_29.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_2_1264066879641766011.plist b/test/plistthread_2_1264066879641766011.plist new file mode 100644 index 00000000000..e8374a5f8f9 --- /dev/null +++ b/test/plistthread_2_1264066879641766011.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_2.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_30_16800297974161405402.plist b/test/plistthread_30_16800297974161405402.plist new file mode 100644 index 00000000000..f5810a71cab --- /dev/null +++ b/test/plistthread_30_16800297974161405402.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_30.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_31_1724676246476540049.plist b/test/plistthread_31_1724676246476540049.plist new file mode 100644 index 00000000000..cc22c78576f --- /dev/null +++ b/test/plistthread_31_1724676246476540049.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_31.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_32_6147841312558408756.plist b/test/plistthread_32_6147841312558408756.plist new file mode 100644 index 00000000000..9ccdfdaccd0 --- /dev/null +++ b/test/plistthread_32_6147841312558408756.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_32.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_33_9654565374444976907.plist b/test/plistthread_33_9654565374444976907.plist new file mode 100644 index 00000000000..c3cfd0a14cc --- /dev/null +++ b/test/plistthread_33_9654565374444976907.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_33.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_34_5067624774322211502.plist b/test/plistthread_34_5067624774322211502.plist new file mode 100644 index 00000000000..cce00c994ea --- /dev/null +++ b/test/plistthread_34_5067624774322211502.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_34.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_35_5180677697026663685.plist b/test/plistthread_35_5180677697026663685.plist new file mode 100644 index 00000000000..4d7d9bd41fa --- /dev/null +++ b/test/plistthread_35_5180677697026663685.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_35.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_36_3715946898172707304.plist b/test/plistthread_36_3715946898172707304.plist new file mode 100644 index 00000000000..10a78ad05f3 --- /dev/null +++ b/test/plistthread_36_3715946898172707304.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_36.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_37_16477917762240165055.plist b/test/plistthread_37_16477917762240165055.plist new file mode 100644 index 00000000000..67057377784 --- /dev/null +++ b/test/plistthread_37_16477917762240165055.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_37.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_38_3127237812261874898.plist b/test/plistthread_38_3127237812261874898.plist new file mode 100644 index 00000000000..bf8b6df6ad7 --- /dev/null +++ b/test/plistthread_38_3127237812261874898.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_38.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_39_15889208676329332649.plist b/test/plistthread_39_15889208676329332649.plist new file mode 100644 index 00000000000..26519be2aa8 --- /dev/null +++ b/test/plistthread_39_15889208676329332649.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_39.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_3_7140801440219647268.plist b/test/plistthread_3_7140801440219647268.plist new file mode 100644 index 00000000000..018b63528a3 --- /dev/null +++ b/test/plistthread_3_7140801440219647268.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_3.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_40_8326628021441270289.plist b/test/plistthread_40_8326628021441270289.plist new file mode 100644 index 00000000000..7e0fe63bb24 --- /dev/null +++ b/test/plistthread_40_8326628021441270289.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_40.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_41_4955505675416584026.plist b/test/plistthread_41_4955505675416584026.plist new file mode 100644 index 00000000000..d91ccae1355 --- /dev/null +++ b/test/plistthread_41_4955505675416584026.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_41.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_42_16256517149409707147.plist b/test/plistthread_42_16256517149409707147.plist new file mode 100644 index 00000000000..c5d1bc5aab4 --- /dev/null +++ b/test/plistthread_42_16256517149409707147.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_42.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_43_12749793087523138996.plist b/test/plistthread_43_12749793087523138996.plist new file mode 100644 index 00000000000..a7bf5a39977 --- /dev/null +++ b/test/plistthread_43_12749793087523138996.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_43.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_44_11782629471991393925.plist b/test/plistthread_44_11782629471991393925.plist new file mode 100644 index 00000000000..b0e54ee491a --- /dev/null +++ b/test/plistthread_44_11782629471991393925.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_44.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_45_11669576549286941742.plist b/test/plistthread_45_11669576549286941742.plist new file mode 100644 index 00000000000..5058dae1cae --- /dev/null +++ b/test/plistthread_45_11669576549286941742.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_45.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_46_4633125463495343679.plist b/test/plistthread_46_4633125463495343679.plist new file mode 100644 index 00000000000..40e8ce89823 --- /dev/null +++ b/test/plistthread_46_4633125463495343679.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_46.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_47_10317898673137437544.plist b/test/plistthread_47_10317898673137437544.plist new file mode 100644 index 00000000000..ac8d72ee9b1 --- /dev/null +++ b/test/plistthread_47_10317898673137437544.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_47.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_48_4044416377584511273.plist b/test/plistthread_48_4044416377584511273.plist new file mode 100644 index 00000000000..467778cd2bf --- /dev/null +++ b/test/plistthread_48_4044416377584511273.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_48.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_49_9729189587226605138.plist b/test/plistthread_49_9729189587226605138.plist new file mode 100644 index 00000000000..65c84e6518c --- /dev/null +++ b/test/plistthread_49_9729189587226605138.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_49.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_4_9349308885974001333.plist b/test/plistthread_4_9349308885974001333.plist new file mode 100644 index 00000000000..b0002ef6567 --- /dev/null +++ b/test/plistthread_4_9349308885974001333.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_4.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_50_337288598857358744.plist b/test/plistthread_50_337288598857358744.plist new file mode 100644 index 00000000000..58dcf300334 --- /dev/null +++ b/test/plistthread_50_337288598857358744.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_50.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_51_6774800492243313711.plist b/test/plistthread_51_6774800492243313711.plist new file mode 100644 index 00000000000..cac2ff307c9 --- /dev/null +++ b/test/plistthread_51_6774800492243313711.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_51.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_52_11099308249362007838.plist b/test/plistthread_52_11099308249362007838.plist new file mode 100644 index 00000000000..3080343df1c --- /dev/null +++ b/test/plistthread_52_11099308249362007838.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_52.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_53_17536820142747962805.plist b/test/plistthread_53_17536820142747962805.plist new file mode 100644 index 00000000000..8096f14d532 --- /dev/null +++ b/test/plistthread_53_17536820142747962805.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_53.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_54_15328312696993608740.plist b/test/plistthread_54_15328312696993608740.plist new file mode 100644 index 00000000000..460a01fd900 --- /dev/null +++ b/test/plistthread_54_15328312696993608740.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_54.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_55_9451578136415727483.plist b/test/plistthread_55_9451578136415727483.plist new file mode 100644 index 00000000000..e2f361ec197 --- /dev/null +++ b/test/plistthread_55_9451578136415727483.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_55.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_56_4140072670728115786.plist b/test/plistthread_56_4140072670728115786.plist new file mode 100644 index 00000000000..604b571ec4d --- /dev/null +++ b/test/plistthread_56_4140072670728115786.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_56.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_57_16793043495847565121.plist b/test/plistthread_57_16793043495847565121.plist new file mode 100644 index 00000000000..fa40610725f --- /dev/null +++ b/test/plistthread_57_16793043495847565121.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_57.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_58_5547817091389879568.plist b/test/plistthread_58_5547817091389879568.plist new file mode 100644 index 00000000000..ac9958a608d --- /dev/null +++ b/test/plistthread_58_5547817091389879568.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_58.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_59_5781655703523258087.plist b/test/plistthread_59_5781655703523258087.plist new file mode 100644 index 00000000000..56594706ace --- /dev/null +++ b/test/plistthread_59_5781655703523258087.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_59.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_5_2911796992588046366.plist b/test/plistthread_5_2911796992588046366.plist new file mode 100644 index 00000000000..3dd62442a6e --- /dev/null +++ b/test/plistthread_5_2911796992588046366.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_5.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_60_10991428992038092119.plist b/test/plistthread_60_10991428992038092119.plist new file mode 100644 index 00000000000..a38664dd572 --- /dev/null +++ b/test/plistthread_60_10991428992038092119.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_60.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_61_16645486244840538688.plist b/test/plistthread_61_16645486244840538688.plist new file mode 100644 index 00000000000..696a10e3451 --- /dev/null +++ b/test/plistthread_61_16645486244840538688.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_61.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_62_5905287288027592029.plist b/test/plistthread_62_5905287288027592029.plist new file mode 100644 index 00000000000..8efd5330a5a --- /dev/null +++ b/test/plistthread_62_5905287288027592029.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_62.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_63_17914484283979085926.plist b/test/plistthread_63_17914484283979085926.plist new file mode 100644 index 00000000000..641fa7c9c3c --- /dev/null +++ b/test/plistthread_63_17914484283979085926.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_63.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_64_4277322933795631651.plist b/test/plistthread_64_4277322933795631651.plist new file mode 100644 index 00000000000..e35c10ddc98 --- /dev/null +++ b/test/plistthread_64_4277322933795631651.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_64.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_65_9961814668460903500.plist b/test/plistthread_65_9961814668460903500.plist new file mode 100644 index 00000000000..d1f5bb54a61 --- /dev/null +++ b/test/plistthread_65_9961814668460903500.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_65.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_66_14571535756133414473.plist b/test/plistthread_66_14571535756133414473.plist new file mode 100644 index 00000000000..9a8fd1e8b6c --- /dev/null +++ b/test/plistthread_66_14571535756133414473.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_66.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_67_14458764308405784306.plist b/test/plistthread_67_14458764308405784306.plist new file mode 100644 index 00000000000..fa7ff3d65ff --- /dev/null +++ b/test/plistthread_67_14458764308405784306.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_67.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_68_15160244842044246879.plist b/test/plistthread_68_15160244842044246879.plist new file mode 100644 index 00000000000..866187d3290 --- /dev/null +++ b/test/plistthread_68_15160244842044246879.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_68.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_69_2590235328912576520.plist b/test/plistthread_69_2590235328912576520.plist new file mode 100644 index 00000000000..533ad0bd78b --- /dev/null +++ b/test/plistthread_69_2590235328912576520.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_69.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_6_17034033309178903855.plist b/test/plistthread_6_17034033309178903855.plist new file mode 100644 index 00000000000..5a939c3dbbe --- /dev/null +++ b/test/plistthread_6_17034033309178903855.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_6.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_70_2046541294716826070.plist b/test/plistthread_70_2046541294716826070.plist new file mode 100644 index 00000000000..d2d0c4e6464 --- /dev/null +++ b/test/plistthread_70_2046541294716826070.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_70.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_71_14616585992220599181.plist b/test/plistthread_71_14616585992220599181.plist new file mode 100644 index 00000000000..8586513bd55 --- /dev/null +++ b/test/plistthread_71_14616585992220599181.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_71.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_72_9840547231846559024.plist b/test/plistthread_72_9840547231846559024.plist new file mode 100644 index 00000000000..5fb872f26b1 --- /dev/null +++ b/test/plistthread_72_9840547231846559024.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_72.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_73_16308775082072161287.plist b/test/plistthread_73_16308775082072161287.plist new file mode 100644 index 00000000000..d2b1c2f180b --- /dev/null +++ b/test/plistthread_73_16308775082072161287.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_73.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_74_10712824947194751266.plist b/test/plistthread_74_10712824947194751266.plist new file mode 100644 index 00000000000..1323a5f460a --- /dev/null +++ b/test/plistthread_74_10712824947194751266.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_74.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_75_10915947602488482489.plist b/test/plistthread_75_10915947602488482489.plist new file mode 100644 index 00000000000..d0e74dacd18 --- /dev/null +++ b/test/plistthread_75_10915947602488482489.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_75.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_76_3157157130443745852.plist b/test/plistthread_76_3157157130443745852.plist new file mode 100644 index 00000000000..a074fa99388 --- /dev/null +++ b/test/plistthread_76_3157157130443745852.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_76.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_77_9594669023829700819.plist b/test/plistthread_77_9594669023829700819.plist new file mode 100644 index 00000000000..20cdd8ffb93 --- /dev/null +++ b/test/plistthread_77_9594669023829700819.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_77.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_78_3179683554201359422.plist b/test/plistthread_78_3179683554201359422.plist new file mode 100644 index 00000000000..1500df20993 --- /dev/null +++ b/test/plistthread_78_3179683554201359422.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_78.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_79_3382806209495090645.plist b/test/plistthread_79_3382806209495090645.plist new file mode 100644 index 00000000000..f02455a4e92 --- /dev/null +++ b/test/plistthread_79_3382806209495090645.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_79.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_7_10596521415792948888.plist b/test/plistthread_7_10596521415792948888.plist new file mode 100644 index 00000000000..66b1a310fe4 --- /dev/null +++ b/test/plistthread_7_10596521415792948888.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_7.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_80_11148127811807683165.plist b/test/plistthread_80_11148127811807683165.plist new file mode 100644 index 00000000000..5bccf7ac846 --- /dev/null +++ b/test/plistthread_80_11148127811807683165.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_80.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_81_4710580734049625446.plist b/test/plistthread_81_4710580734049625446.plist new file mode 100644 index 00000000000..77b560eed1d --- /dev/null +++ b/test/plistthread_81_4710580734049625446.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_81.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_82_16234269515818183255.plist b/test/plistthread_82_16234269515818183255.plist new file mode 100644 index 00000000000..a4af5235d1b --- /dev/null +++ b/test/plistthread_82_16234269515818183255.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_82.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_83_3441582694911078208.plist b/test/plistthread_83_3441582694911078208.plist new file mode 100644 index 00000000000..6bd1f3efa0a --- /dev/null +++ b/test/plistthread_83_3441582694911078208.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_83.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_84_1367632206203953993.plist b/test/plistthread_84_1367632206203953993.plist new file mode 100644 index 00000000000..fe1b04e071f --- /dev/null +++ b/test/plistthread_84_1367632206203953993.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_84.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_85_1254860758476323826.plist b/test/plistthread_85_1254860758476323826.plist new file mode 100644 index 00000000000..b59cbd14b64 --- /dev/null +++ b/test/plistthread_85_1254860758476323826.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_85.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_86_9520163457575722787.plist b/test/plistthread_86_9520163457575722787.plist new file mode 100644 index 00000000000..0d11fed93d0 --- /dev/null +++ b/test/plistthread_86_9520163457575722787.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_86.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_87_15204655192240994636.plist b/test/plistthread_87_15204655192240994636.plist new file mode 100644 index 00000000000..286f81b8a7a --- /dev/null +++ b/test/plistthread_87_15204655192240994636.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_87.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_88_3308300643241112613.plist b/test/plistthread_88_3308300643241112613.plist new file mode 100644 index 00000000000..3b5186e11c3 --- /dev/null +++ b/test/plistthread_88_3308300643241112613.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_88.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_89_8993073852883206478.plist b/test/plistthread_89_8993073852883206478.plist new file mode 100644 index 00000000000..bee377c1c04 --- /dev/null +++ b/test/plistthread_89_8993073852883206478.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_89.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_8_16690207453054783769.plist b/test/plistthread_8_16690207453054783769.plist new file mode 100644 index 00000000000..1c8d495907e --- /dev/null +++ b/test/plistthread_8_16690207453054783769.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_8.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_90_12651528525613051460.plist b/test/plistthread_90_12651528525613051460.plist new file mode 100644 index 00000000000..b96de1d439d --- /dev/null +++ b/test/plistthread_90_12651528525613051460.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_90.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_91_6967036790947779611.plist b/test/plistthread_91_6967036790947779611.plist new file mode 100644 index 00000000000..462439540ec --- /dev/null +++ b/test/plistthread_91_6967036790947779611.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_91.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_92_13920808039728420714.plist b/test/plistthread_92_13920808039728420714.plist new file mode 100644 index 00000000000..edfe6aed83d --- /dev/null +++ b/test/plistthread_92_13920808039728420714.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_92.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_93_14361142554253720161.plist b/test/plistthread_93_14361142554253720161.plist new file mode 100644 index 00000000000..f33802f4e0e --- /dev/null +++ b/test/plistthread_93_14361142554253720161.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_93.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_94_16299491327098962488.plist b/test/plistthread_94_16299491327098962488.plist new file mode 100644 index 00000000000..5c327fbffec --- /dev/null +++ b/test/plistthread_94_16299491327098962488.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_94.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_95_4535142376562078159.plist b/test/plistthread_95_4535142376562078159.plist new file mode 100644 index 00000000000..93386fe5fa7 --- /dev/null +++ b/test/plistthread_95_4535142376562078159.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_95.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_96_8422524077981450558.plist b/test/plistthread_96_8422524077981450558.plist new file mode 100644 index 00000000000..b4483562b88 --- /dev/null +++ b/test/plistthread_96_8422524077981450558.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_96.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_97_8625646733275181781.plist b/test/plistthread_97_8625646733275181781.plist new file mode 100644 index 00000000000..0edaf23f812 --- /dev/null +++ b/test/plistthread_97_8625646733275181781.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_97.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_98_8399997654223836988.plist b/test/plistthread_98_8399997654223836988.plist new file mode 100644 index 00000000000..aeb89934183 --- /dev/null +++ b/test/plistthread_98_8399997654223836988.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_98.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_99_14837509547609791955.plist b/test/plistthread_99_14837509547609791955.plist new file mode 100644 index 00000000000..e3a725f7135 --- /dev/null +++ b/test/plistthread_99_14837509547609791955.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_99.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/plistthread_9_10252977034645650818.plist b/test/plistthread_9_10252977034645650818.plist new file mode 100644 index 00000000000..554f437b829 --- /dev/null +++ b/test/plistthread_9_10252977034645650818.plist @@ -0,0 +1,64 @@ + + + + + clang_version +cppcheck version 2.11 dev + files + + thread_9.cpp + + diagnostics + + + path + + + kindevent + location + + line4 + col3 + file0 + + ranges + + + + line4 + col3 + file0 + + + line4 + col3 + file0 + + + + depth0 + extended_message + Memory leak: a + message + Memory leak: a + + + descriptionMemory leak: a + categoryerror + typeMemory leak: a + check_namememleak + + issue_hash_content_of_line_in_context0 + issue_context_kind + issue_context + issue_hash_function_offset + location + + line4 + col3 + file0 + + + + + \ No newline at end of file diff --git a/test/testsimplifytokens.cpp b/test/testsimplifytokens.cpp index 35857c0d8db..574e364e6bd 100644 --- a/test/testsimplifytokens.cpp +++ b/test/testsimplifytokens.cpp @@ -214,8 +214,7 @@ class TestSimplifyTokens : public TestFixture { if (tokenizer.tokens()) return tokenizer.tokens()->stringifyList(false, expand, false, true, false, nullptr, nullptr); - else - return ""; + return ""; } #define tokenizeDebugListing(...) tokenizeDebugListing_(__FILE__, __LINE__, __VA_ARGS__) diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index af455a0cf24..ee33026eb67 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -477,8 +477,7 @@ class TestTokenizer : public TestFixture { if (tokenizer.tokens()) return tokenizer.tokens()->stringifyList(false, expand, false, true, false, nullptr, nullptr); - else - return ""; + return ""; } #define tokenizeAndStringifyWindows(...) tokenizeAndStringifyWindows_(__FILE__, __LINE__, __VA_ARGS__) @@ -504,8 +503,7 @@ class TestTokenizer : public TestFixture { if (tokenizer.tokens()) return tokenizer.tokens()->stringifyList(false, expand, false, true, false, nullptr, nullptr); - else - return ""; + return ""; } std::string tokenizeAndStringify_(const char* file, int line, const char code[], const Settings &settings, const char filename[] = "test.cpp") { From e688fadd4b6a1e340cca4a02ae125d8d2dd828db Mon Sep 17 00:00:00 2001 From: chrchr-github Date: Mon, 19 Jun 2023 23:10:13 +0200 Subject: [PATCH 06/15] Fix readability-else-after-return --- lib/checkclass.cpp | 26 ++++++++------- lib/token.cpp | 81 +++++++++++++++++++++++----------------------- 2 files changed, 56 insertions(+), 51 deletions(-) diff --git a/lib/checkclass.cpp b/lib/checkclass.cpp index 3a6bc79d074..0ffb3cacb38 100644 --- a/lib/checkclass.cpp +++ b/lib/checkclass.cpp @@ -585,7 +585,8 @@ bool CheckClass::canNotCopy(const Scope *scope) if (func.type == Function::eCopyConstructor) { publicCopy = true; break; - } else if (func.type == Function::eOperatorEqual) { + } + if (func.type == Function::eOperatorEqual) { publicAssign = true; break; } @@ -609,10 +610,12 @@ bool CheckClass::canNotMove(const Scope *scope) if (func.type == Function::eCopyConstructor) { publicCopy = true; break; - } else if (func.type == Function::eMoveConstructor) { + } + if (func.type == Function::eMoveConstructor) { publicMove = true; break; - } else if (func.type == Function::eOperatorEqual) { + } + if (func.type == Function::eOperatorEqual) { publicAssign = true; break; } @@ -874,7 +877,7 @@ void CheckClass::initializeVarList(const Function &func, std::liststr() == "::") ftok = ftok->next(); int offsetToMember = 4; @@ -886,7 +889,7 @@ void CheckClass::initializeVarList(const Function &func, std::liststr() == "::") ftok = ftok->next(); assignVar(usage, ftok->tokAt(2)->varId()); @@ -895,7 +898,7 @@ void CheckClass::initializeVarList(const Function &func, std::listfunction()) { const Function *member = ftok->function(); // recursive call @@ -1164,7 +1167,8 @@ void CheckClass::initializationListUsage() if (var2->scope() == owner && tok2->strAt(-1)!=".") { // Is there a dependency between two member variables? allowed = false; return ChildrenToVisit::done; - } else if (var2->isArray() && var2->isLocal()) { // Can't initialize with a local array + } + if (var2->isArray() && var2->isLocal()) { // Can't initialize with a local array allowed = false; return ChildrenToVisit::done; } @@ -2158,11 +2162,11 @@ bool CheckClass::isMemberVar(const Scope *scope, const Token *tok) const do { again = false; - if (tok->str() == "this") { + if (tok->str() == "this") return !getFuncTokFromThis(tok); // function calls are handled elsewhere - } else if (Token::simpleMatch(tok->tokAt(-3), "( * this )")) { + if (Token::simpleMatch(tok->tokAt(-3), "( * this )")) return true; - } else if (Token::Match(tok->tokAt(-3), "%name% ) . %name%")) { + if (Token::Match(tok->tokAt(-3), "%name% ) . %name%")) { tok = tok->tokAt(-3); again = true; } else if (Token::Match(tok->tokAt(-2), "%name% . %name%")) { @@ -2394,7 +2398,7 @@ bool CheckClass::checkConstFunc(const Scope *scope, const Function *func, Member if (top->isAssignmentOp()) { if (Token::simpleMatch(top->astOperand2(), "{") && !top->astOperand2()->previous()->function()) // TODO: check usage in init list return false; - else if (top->previous()->variable()) { + if (top->previous()->variable()) { if (top->previous()->variable()->typeStartToken()->strAt(-1) != "const" && top->previous()->variable()->isPointer()) return false; } diff --git a/lib/token.cpp b/lib/token.cpp index 2e07967e74f..fe30564f496 100644 --- a/lib/token.cpp +++ b/lib/token.cpp @@ -465,11 +465,10 @@ static int multiComparePercent(const Token *tok, const char*& haystack, nonneg i if (haystack[3] == '%') { // %any% haystack += 4; return 1; - } else { // %assign% - haystack += 7; - if (tok->isAssignmentOp()) - return 1; - } + // %assign% + haystack += 7; + if (tok->isAssignmentOp()) + return 1; } break; case 'n': @@ -646,9 +645,9 @@ bool Token::simpleMatch(const Token *tok, const char pattern[], size_t pattern_l bool Token::firstWordEquals(const char *str, const char *word) { for (;;) { - if (*str != *word) { + if (*str != *word) return (*str == ' ' && *word == 0); - } else if (*str == 0) + if (*str == 0) break; ++str; @@ -841,7 +840,7 @@ const Token* Token::nextArgument() const for (const Token* tok = this; tok; tok = tok->next()) { if (tok->str() == ",") return tok->next(); - else if (tok->link() && Token::Match(tok, "(|{|[|<")) + if (tok->link() && Token::Match(tok, "(|{|[|<")) tok = tok->link(); else if (Token::Match(tok, ")|;")) return nullptr; @@ -854,7 +853,7 @@ const Token* Token::nextArgumentBeforeCreateLinks2() const for (const Token* tok = this; tok; tok = tok->next()) { if (tok->str() == ",") return tok->next(); - else if (tok->link() && Token::Match(tok, "(|{|[")) + if (tok->link() && Token::Match(tok, "(|{|[")) tok = tok->link(); else if (tok->str() == "<") { const Token* temp = tok->findClosingBracket(); @@ -871,7 +870,7 @@ const Token* Token::nextTemplateArgument() const for (const Token* tok = this; tok; tok = tok->next()) { if (tok->str() == ",") return tok->next(); - else if (tok->link() && Token::Match(tok, "(|{|[|<")) + if (tok->link() && Token::Match(tok, "(|{|[|<")) tok = tok->link(); else if (Token::Match(tok, ">|;")) return nullptr; @@ -1944,16 +1943,15 @@ static bool removeContradiction(std::list& values) if (removey) values.remove(y); return true; - } else { - result = removex || removey; - bool bail = false; - if (removex && removePointValue(values, x)) - bail = true; - if (removey && removePointValue(values, y)) - bail = true; - if (bail) - return true; } + result = removex || removey; + bool bail = false; + if (removex && removePointValue(values, x)) + bail = true; + if (removey && removePointValue(values, y)) + bail = true; + if (bail) + return true; } } return result; @@ -2203,13 +2201,13 @@ const ::Type* Token::typeOf(const Token* tok, const Token** typeTok) if (typeTok != nullptr) *typeTok = tok; const Token* lhsVarTok{}; - if (tok->type()) { + if (tok->type()) return tok->type(); - } else if (tok->variable()) { + if (tok->variable()) return tok->variable()->type(); - } else if (tok->function()) { + if (tok->function()) return tok->function()->retType; - } else if (Token::simpleMatch(tok, "return")) { + if (Token::simpleMatch(tok, "return")) { const Scope *scope = tok->scope(); if (!scope) return nullptr; @@ -2217,15 +2215,16 @@ const ::Type* Token::typeOf(const Token* tok, const Token** typeTok) if (!function) return nullptr; return function->retType; - } else if (Token::Match(tok->previous(), "%type%|= (|{")) { + } + if (Token::Match(tok->previous(), "%type%|= (|{")) return typeOf(tok->previous(), typeTok); - } else if (Token::simpleMatch(tok, "=") && (lhsVarTok = getLHSVariableToken(tok)) != tok->next()) { + if (Token::simpleMatch(tok, "=") && (lhsVarTok = getLHSVariableToken(tok)) != tok->next()) return Token::typeOf(lhsVarTok, typeTok); - } else if (Token::simpleMatch(tok, ".")) { + if (Token::simpleMatch(tok, ".")) return Token::typeOf(tok->astOperand2(), typeTok); - } else if (Token::simpleMatch(tok, "[")) { + if (Token::simpleMatch(tok, "[")) return Token::typeOf(tok->astOperand1(), typeTok); - } else if (Token::simpleMatch(tok, "{")) { + if (Token::simpleMatch(tok, "{")) { int argnr; const Token* ftok = getTokenArgumentFunction(tok, argnr); if (argnr < 0) @@ -2251,9 +2250,9 @@ std::pair Token::typeDecl(const Token* tok, bool poi { if (!tok) return {}; - else if (tok->type()) { + if (tok->type()) return {tok, tok->next()}; - } else if (tok->variable()) { + if (tok->variable()) { const Variable *var = tok->variable(); if (!var->typeStartToken() || !var->typeEndToken()) return {}; @@ -2321,7 +2320,8 @@ std::pair Token::typeDecl(const Token* tok, bool poi if (result.first) return result; return {var->typeStartToken(), var->typeEndToken()->next()}; - } else if (Token::simpleMatch(tok, "return")) { + } + if (Token::simpleMatch(tok, "return")) { const Scope* scope = tok->scope(); if (!scope) return {}; @@ -2329,19 +2329,20 @@ std::pair Token::typeDecl(const Token* tok, bool poi if (!function) return {}; return { function->retDef, function->returnDefEnd() }; - } else if (tok->previous() && tok->previous()->function()) { + } + if (tok->previous() && tok->previous()->function()) { const Function *function = tok->previous()->function(); return {function->retDef, function->returnDefEnd()}; - } else if (Token::simpleMatch(tok, "=")) { + } + if (Token::simpleMatch(tok, "=")) return Token::typeDecl(tok->astOperand1()); - } else if (Token::simpleMatch(tok, ".")) { + if (Token::simpleMatch(tok, ".")) return Token::typeDecl(tok->astOperand2()); - } else { - const ::Type * t = typeOf(tok); - if (!t || !t->classDef) - return {}; - return {t->classDef->next(), t->classDef->tokAt(2)}; - } + + const ::Type * t = typeOf(tok); + if (!t || !t->classDef) + return {}; + return {t->classDef->next(), t->classDef->tokAt(2)}; } std::string Token::typeStr(const Token* tok) { From 42105a98c4e4dc754178175bc6a6dc01b947ba8a Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 12:54:18 +0200 Subject: [PATCH 07/15] Delete --- .../plistsingle_001_1982654442753025810.plist | 64 ------------------- ...plistsingle_002_10247957141852424771.plist | 64 ------------------- .../plistsingle_003_9890302464338082284.plist | 64 ------------------- ...plistsingle_004_12067882847020172541.plist | 64 ------------------- .../plistsingle_005_5630617244238936838.plist | 64 ------------------- ...plistsingle_006_16962063200094885239.plist | 64 ------------------- .../plistsingle_007_4606220959910279904.plist | 64 ------------------- test/plistsingle_008_580374351944512977.plist | 64 ------------------- .../plistsingle_009_3198758014225338138.plist | 64 ------------------- ...plistsingle_010_16003424265815961552.plist | 64 ------------------- .../plistsingle_011_4269509797141902503.plist | 64 ------------------- .../plistsingle_012_8017175502773619190.plist | 64 ------------------- .../plistsingle_013_2332437477503628077.plist | 64 ------------------- .../plistsingle_014_9319752689436326364.plist | 64 ------------------- ...plistsingle_015_15757264582822281331.plist | 64 ------------------- ...plistsingle_016_10449069917159320642.plist | 64 ------------------- ...plistsingle_017_16886581810545275609.plist | 64 ------------------- ...plistsingle_018_17272168241162376792.plist | 64 ------------------- ...plistsingle_019_17475290896456108015.plist | 64 ------------------- ...plistsingle_020_12881590431036913615.plist | 64 ------------------- .../plistsingle_021_6199195307864246328.plist | 64 ------------------- ...plistsingle_022_16972094787750017237.plist | 64 ------------------- ...plistsingle_023_16768972132456286014.plist | 64 ------------------- ...plistsingle_024_15313484845422615067.plist | 64 ------------------- .../plistsingle_025_2551232506378335300.plist | 64 ------------------- .../plistsingle_026_4260846535019004001.plist | 64 ------------------- .../plistsingle_027_3820512020493704554.plist | 64 ------------------- ...plistsingle_028_11451319586617536263.plist | 64 ------------------- .../plistsingle_029_4983091736391934000.plist | 64 ------------------- .../plistsingle_030_6812121053832316718.plist | 64 ------------------- .../plistsingle_031_6925173976536768901.plist | 64 ------------------- .../plistsingle_032_5460443177682812520.plist | 64 ------------------- ...plistsingle_033_18222414041750270271.plist | 64 ------------------- test/plistsingle_034_98050179961959002.plist | 64 ------------------- .../plistsingle_035_3469172525986645265.plist | 64 ------------------- .../plistsingle_036_7892337592068513972.plist | 64 ------------------- ...plistsingle_037_11399061653955082123.plist | 64 ------------------- .../plistsingle_038_8764298648067781446.plist | 64 ------------------- .../plistsingle_039_8967456487733615421.plist | 64 ------------------- ...plistsingle_040_14177229776248449453.plist | 64 ------------------- .../plistsingle_041_1415223727808888950.plist | 64 ------------------- ...plistsingle_042_16114302095886723879.plist | 64 ------------------- .../plistsingle_043_9401472490851231312.plist | 64 ------------------- ...plistsingle_044_10284630035580545369.plist | 64 ------------------- .../plistsingle_045_3847118142194590402.plist | 64 ------------------- .../plistsingle_046_9155312807857551091.plist | 64 ------------------- .../plistsingle_047_2717800914471596124.plist | 64 ------------------- .../plistsingle_048_2943449993522940917.plist | 64 ------------------- ...plistsingle_049_14952682173846537566.plist | 64 ------------------- test/plistsingle_050_164674247843652948.plist | 64 ------------------- .../plistsingle_051_3671398309730221099.plist | 64 ------------------- ...plistsingle_052_10625169558510862202.plist | 64 ------------------- .../plistsingle_053_7761902666443324721.plist | 64 ------------------- ...plistsingle_054_16179523907167503112.plist | 64 ------------------- ...plistsingle_055_10302789346589621855.plist | 64 ------------------- ...plistsingle_056_17339521907358041934.plist | 64 ------------------- ...plistsingle_057_11654748697715948069.plist | 64 ------------------- .../plistsingle_058_5104359173006278476.plist | 64 ------------------- ...plistsingle_059_17866611512050558243.plist | 64 ------------------- ...plistsingle_060_13692926178100942867.plist | 64 ------------------- ...plistsingle_061_13244920293020499324.plist | 64 ------------------- .../plistsingle_062_2801849921142396665.plist | 64 ------------------- ...plistsingle_063_14566198871679280994.plist | 64 ------------------- .../plistsingle_064_8194677400726075463.plist | 64 ------------------- .../plistsingle_065_1726731025477295216.plist | 64 ------------------- .../plistsingle_066_6257886556064623053.plist | 64 ------------------- ...plistsingle_067_12134304457293579542.plist | 64 ------------------- ...plistsingle_068_11811959429744441947.plist | 64 ------------------- ...plistsingle_069_11507226631081024388.plist | 64 ------------------- ...plistsingle_070_13827446741497847186.plist | 64 ------------------- .../plistsingle_071_8142955006832575337.plist | 64 ------------------- .../plistsingle_072_3288350689373352044.plist | 64 ------------------- .../plistsingle_073_3646005366887694531.plist | 64 ------------------- ...plistsingle_074_17475409542983758214.plist | 64 ------------------- .../plistsingle_075_5465931072055442301.plist | 64 ------------------- ...plistsingle_076_16451013258655101280.plist | 64 ------------------- ...plistsingle_077_10360111425130154999.plist | 64 ------------------- ...plistsingle_078_15043550312970159514.plist | 64 ------------------- ...plistsingle_079_12425166650689334353.plist | 64 ------------------- ...plistsingle_080_17464750084948464481.plist | 64 ------------------- ...plistsingle_081_17024415570423165034.plist | 64 ------------------- ...plistsingle_082_10070644321642523931.plist | 64 ------------------- ...plistsingle_083_15755136056307795780.plist | 64 ------------------- ...plistsingle_084_11729254263969926101.plist | 64 ------------------- ...plistsingle_085_11526131608676194878.plist | 64 ------------------- .../plistsingle_086_7638749907256822479.plist | 64 ------------------- test/plistsingle_087_956354784084155192.plist | 64 ------------------- test/plistsingle_088_815651583253766329.plist | 64 ------------------- test/plistsingle_089_612528927960035106.plist | 64 ------------------- test/plistsingle_090_217602653902721384.plist | 64 ------------------- ...plistsingle_091_12979573517970179135.plist | 64 ------------------- .../plistsingle_092_1569280530052225582.plist | 64 ------------------- .../plistsingle_093_1682333452756677765.plist | 64 ------------------- .../plistsingle_094_2649497068288422836.plist | 64 ------------------- .../plistsingle_095_6156221130174990987.plist | 64 ------------------- ...plistsingle_096_13301953729891419482.plist | 64 ------------------- ...plistsingle_097_16673076075916105745.plist | 64 ------------------- ...plistsingle_098_14464814920766470944.plist | 64 ------------------- .../plistsingle_099_8618796317028236983.plist | 64 ------------------- .../plistsingle_100_1323296195754830746.plist | 64 ------------------- test/plistsingle_2_10715338952105027795.plist | 64 ------------------- test/plistsingle_4_15737255920495926157.plist | 64 ------------------- ...istsinglefs_001_13988868595647931277.plist | 64 ------------------- ...listsinglefs_002_9212829835273891120.plist | 64 ------------------- ...istsinglefs_003_15681057685499493383.plist | 64 ------------------- ...istsinglefs_004_10085107550622083362.plist | 64 ------------------- ...istsinglefs_005_10288230205915814585.plist | 64 ------------------- ...listsinglefs_006_2529439733871077948.plist | 64 ------------------- ...listsinglefs_007_8966951627257032915.plist | 64 ------------------- ...listsinglefs_008_2551966157628691518.plist | 64 ------------------- ...listsinglefs_009_2755088812922422741.plist | 64 ------------------- ...istsinglefs_010_10363711595465424215.plist | 64 ------------------- ...istsinglefs_011_16017768848267870784.plist | 64 ------------------- ...listsinglefs_012_5277569891454924125.plist | 64 ------------------- ...istsinglefs_013_17286766887406418022.plist | 64 ------------------- ...listsinglefs_014_3649605537222963747.plist | 64 ------------------- ...listsinglefs_015_9334097271888235596.plist | 64 ------------------- ...istsinglefs_016_13943818359560746569.plist | 64 ------------------- ...istsinglefs_017_13831046911833116402.plist | 64 ------------------- ...istsinglefs_018_14532527445471578975.plist | 64 ------------------- ...listsinglefs_019_1962517932339908616.plist | 64 ------------------- ...istsinglefs_020_18156315275994242456.plist | 64 ------------------- ...listsinglefs_021_6147083095670645807.plist | 64 ------------------- ...istsinglefs_022_10471590852789339934.plist | 64 ------------------- ...istsinglefs_023_16909102746175294901.plist | 64 ------------------- ...istsinglefs_024_14700595300420940836.plist | 64 ------------------- ...listsinglefs_025_8823860739843059579.plist | 64 ------------------- ...listsinglefs_026_3512355274155447882.plist | 64 ------------------- ...istsinglefs_027_16165326099274897217.plist | 64 ------------------- ...listsinglefs_028_4920099694817211664.plist | 64 ------------------- ...listsinglefs_029_5153938306950590183.plist | 64 ------------------- ...listsinglefs_030_7698910624868602385.plist | 64 ------------------- ...listsinglefs_031_4327788278843916122.plist | 64 ------------------- ...istsinglefs_032_15628799752837039243.plist | 64 ------------------- ...istsinglefs_033_12122075690950471092.plist | 64 ------------------- ...istsinglefs_034_11154912075418726021.plist | 64 ------------------- ...istsinglefs_035_11041859152714273838.plist | 64 ------------------- ...listsinglefs_036_4005408066922675775.plist | 64 ------------------- ...listsinglefs_037_9690181276564769640.plist | 64 ------------------- ...listsinglefs_038_3416698981011843369.plist | 64 ------------------- ...listsinglefs_039_9101472190653937234.plist | 64 ------------------- ...istsinglefs_040_16172580577588737498.plist | 64 ------------------- ...listsinglefs_041_1096958849903872145.plist | 64 ------------------- ...listsinglefs_042_5520123915985740852.plist | 64 ------------------- ...listsinglefs_043_9026847977872309003.plist | 64 ------------------- ...listsinglefs_044_4439907377749543598.plist | 64 ------------------- ...listsinglefs_045_4552960300453995781.plist | 64 ------------------- ...listsinglefs_046_3088229501600039400.plist | 64 ------------------- ...istsinglefs_047_15850200365667497151.plist | 64 ------------------- ...listsinglefs_048_2499520415689206994.plist | 64 ------------------- ...istsinglefs_049_15261491279756664745.plist | 64 ------------------- ...istsinglefs_050_12941271169339841947.plist | 64 ------------------- ...plistsinglefs_051_179018830295562180.plist | 64 ------------------- ...listsinglefs_052_1888632858936230881.plist | 64 ------------------- ...listsinglefs_053_1448298344410931434.plist | 64 ------------------- ...istsinglefs_054_10509376754954140495.plist | 64 ------------------- ...listsinglefs_055_3826981631781473208.plist | 64 ------------------- ...istsinglefs_056_14599881111667244117.plist | 64 ------------------- ...istsinglefs_057_14396758456373512894.plist | 64 ------------------- ...listsinglefs_058_2364999852292302675.plist | 64 ------------------- ...istsinglefs_059_14374232032615899324.plist | 64 ------------------- ...listsinglefs_060_6947539013353553244.plist | 64 ------------------- ...istsinglefs_061_13385050906739508211.plist | 64 ------------------- ...listsinglefs_062_8076856241076547522.plist | 64 ------------------- ...istsinglefs_063_14514368134462502489.plist | 64 ------------------- ...istsinglefs_064_13631210589733188432.plist | 64 ------------------- ...listsinglefs_065_1897296121059129383.plist | 64 ------------------- ...listsinglefs_066_5644961826690846070.plist | 64 ------------------- ...istsinglefs_067_18406967875130406573.plist | 64 ------------------- ...istsinglefs_068_11199069884742767716.plist | 64 ------------------- ...listsinglefs_069_5322616799141708475.plist | 64 ------------------- ...istsinglefs_070_10307150971210564661.plist | 64 ------------------- ...listsinglefs_071_3869639077824609694.plist | 64 ------------------- ...istsinglefs_072_17991875394415467183.plist | 64 ------------------- ...istsinglefs_073_11554363501029512216.plist | 64 ------------------- ...listsinglefs_074_9563374324310166977.plist | 64 ------------------- ...istsinglefs_075_15357147572900269258.plist | 64 ------------------- ...listsinglefs_076_2221908964878329339.plist | 64 ------------------- ...listsinglefs_077_8098643525456210596.plist | 64 ------------------- ...listsinglefs_078_2849303450439809261.plist | 64 ------------------- ...listsinglefs_079_2544535467404288950.plist | 64 ------------------- ...istsinglefs_080_15714431376569431070.plist | 64 ------------------- ...listsinglefs_081_3705199196245834421.plist | 64 ------------------- ...listsinglefs_082_4952411726064781976.plist | 64 ------------------- ...istsinglefs_083_11389923619450736943.plist | 64 ------------------- ...listsinglefs_084_8755195797935539018.plist | 64 ------------------- ...listsinglefs_085_2961422549345436737.plist | 64 ------------------- ...listsinglefs_086_1496691750491480356.plist | 64 ------------------- ...istsinglefs_087_14066701263623150715.plist | 64 ------------------- ...istsinglefs_088_14389327766149110326.plist | 64 ------------------- ...istsinglefs_089_14694095749184630637.plist | 64 ------------------- ...listsinglefs_090_9248248590702766911.plist | 64 ------------------- ...istsinglefs_091_14933021800344860776.plist | 64 ------------------- ...istsinglefs_092_16397752599198817157.plist | 64 ------------------- ...istsinglefs_093_16284699676494364974.plist | 64 ------------------- ...listsinglefs_094_2424896202907578763.plist | 64 ------------------- ...istsinglefs_095_17364916214730562228.plist | 64 ------------------- ...istsinglefs_096_12941751148648693521.plist | 64 ------------------- ...listsinglefs_097_9570628802624007258.plist | 64 ------------------- ...listsinglefs_098_4887471389760824759.plist | 64 ------------------- ...istsinglefs_099_10733489993499058720.plist | 64 ------------------- ...listsinglefs_100_9929666059625854277.plist | 64 ------------------- .../plistsinglefs_2_5071803044175591832.plist | 64 ------------------- .../plistsinglefs_4_8874587116046348874.plist | 64 ------------------- .../plistthread_100_5268126128994548098.plist | 64 ------------------- test/plistthread_10_7575256409926221148.plist | 64 ------------------- .../plistthread_11_14012768303312176115.plist | 64 ------------------- test/plistthread_12_8704573637649215426.plist | 64 ------------------- .../plistthread_13_15142085531035170393.plist | 64 ------------------- .../plistthread_14_14258927986305856336.plist | 64 ------------------- test/plistthread_15_2525013517631797287.plist | 64 ------------------- test/plistthread_16_6272679223263513974.plist | 64 ------------------- test/plistthread_17_587941197993522861.plist | 64 ------------------- .../plistthread_18_11826787281315435620.plist | 64 ------------------- test/plistthread_19_5950334195714376379.plist | 64 ------------------- test/plistthread_1_14399305487663705930.plist | 64 ------------------- .../plistthread_20_13568988565912509851.plist | 64 ------------------- test/plistthread_21_806736226868230084.plist | 64 ------------------- test/plistthread_22_2516350255508898785.plist | 64 ------------------- test/plistthread_23_2076015740983599338.plist | 64 ------------------- .../plistthread_24_11137094151526808399.plist | 64 ------------------- test/plistthread_25_4454699028354141112.plist | 64 ------------------- .../plistthread_26_15227598508239912021.plist | 64 ------------------- .../plistthread_27_15024475852946180798.plist | 64 ------------------- test/plistthread_28_2992717248864970579.plist | 64 ------------------- .../plistthread_29_15001949429188567228.plist | 64 ------------------- test/plistthread_2_1264066879641766011.plist | 64 ------------------- .../plistthread_30_16800297974161405402.plist | 64 ------------------- test/plistthread_31_1724676246476540049.plist | 64 ------------------- test/plistthread_32_6147841312558408756.plist | 64 ------------------- test/plistthread_33_9654565374444976907.plist | 64 ------------------- test/plistthread_34_5067624774322211502.plist | 64 ------------------- test/plistthread_35_5180677697026663685.plist | 64 ------------------- test/plistthread_36_3715946898172707304.plist | 64 ------------------- .../plistthread_37_16477917762240165055.plist | 64 ------------------- test/plistthread_38_3127237812261874898.plist | 64 ------------------- .../plistthread_39_15889208676329332649.plist | 64 ------------------- test/plistthread_3_7140801440219647268.plist | 64 ------------------- test/plistthread_40_8326628021441270289.plist | 64 ------------------- test/plistthread_41_4955505675416584026.plist | 64 ------------------- .../plistthread_42_16256517149409707147.plist | 64 ------------------- .../plistthread_43_12749793087523138996.plist | 64 ------------------- .../plistthread_44_11782629471991393925.plist | 64 ------------------- .../plistthread_45_11669576549286941742.plist | 64 ------------------- test/plistthread_46_4633125463495343679.plist | 64 ------------------- .../plistthread_47_10317898673137437544.plist | 64 ------------------- test/plistthread_48_4044416377584511273.plist | 64 ------------------- test/plistthread_49_9729189587226605138.plist | 64 ------------------- test/plistthread_4_9349308885974001333.plist | 64 ------------------- test/plistthread_50_337288598857358744.plist | 64 ------------------- test/plistthread_51_6774800492243313711.plist | 64 ------------------- .../plistthread_52_11099308249362007838.plist | 64 ------------------- .../plistthread_53_17536820142747962805.plist | 64 ------------------- .../plistthread_54_15328312696993608740.plist | 64 ------------------- test/plistthread_55_9451578136415727483.plist | 64 ------------------- test/plistthread_56_4140072670728115786.plist | 64 ------------------- .../plistthread_57_16793043495847565121.plist | 64 ------------------- test/plistthread_58_5547817091389879568.plist | 64 ------------------- test/plistthread_59_5781655703523258087.plist | 64 ------------------- test/plistthread_5_2911796992588046366.plist | 64 ------------------- .../plistthread_60_10991428992038092119.plist | 64 ------------------- .../plistthread_61_16645486244840538688.plist | 64 ------------------- test/plistthread_62_5905287288027592029.plist | 64 ------------------- .../plistthread_63_17914484283979085926.plist | 64 ------------------- test/plistthread_64_4277322933795631651.plist | 64 ------------------- test/plistthread_65_9961814668460903500.plist | 64 ------------------- .../plistthread_66_14571535756133414473.plist | 64 ------------------- .../plistthread_67_14458764308405784306.plist | 64 ------------------- .../plistthread_68_15160244842044246879.plist | 64 ------------------- test/plistthread_69_2590235328912576520.plist | 64 ------------------- test/plistthread_6_17034033309178903855.plist | 64 ------------------- test/plistthread_70_2046541294716826070.plist | 64 ------------------- .../plistthread_71_14616585992220599181.plist | 64 ------------------- test/plistthread_72_9840547231846559024.plist | 64 ------------------- .../plistthread_73_16308775082072161287.plist | 64 ------------------- .../plistthread_74_10712824947194751266.plist | 64 ------------------- .../plistthread_75_10915947602488482489.plist | 64 ------------------- test/plistthread_76_3157157130443745852.plist | 64 ------------------- test/plistthread_77_9594669023829700819.plist | 64 ------------------- test/plistthread_78_3179683554201359422.plist | 64 ------------------- test/plistthread_79_3382806209495090645.plist | 64 ------------------- test/plistthread_7_10596521415792948888.plist | 64 ------------------- .../plistthread_80_11148127811807683165.plist | 64 ------------------- test/plistthread_81_4710580734049625446.plist | 64 ------------------- .../plistthread_82_16234269515818183255.plist | 64 ------------------- test/plistthread_83_3441582694911078208.plist | 64 ------------------- test/plistthread_84_1367632206203953993.plist | 64 ------------------- test/plistthread_85_1254860758476323826.plist | 64 ------------------- test/plistthread_86_9520163457575722787.plist | 64 ------------------- .../plistthread_87_15204655192240994636.plist | 64 ------------------- test/plistthread_88_3308300643241112613.plist | 64 ------------------- test/plistthread_89_8993073852883206478.plist | 64 ------------------- test/plistthread_8_16690207453054783769.plist | 64 ------------------- .../plistthread_90_12651528525613051460.plist | 64 ------------------- test/plistthread_91_6967036790947779611.plist | 64 ------------------- .../plistthread_92_13920808039728420714.plist | 64 ------------------- .../plistthread_93_14361142554253720161.plist | 64 ------------------- .../plistthread_94_16299491327098962488.plist | 64 ------------------- test/plistthread_95_4535142376562078159.plist | 64 ------------------- test/plistthread_96_8422524077981450558.plist | 64 ------------------- test/plistthread_97_8625646733275181781.plist | 64 ------------------- test/plistthread_98_8399997654223836988.plist | 64 ------------------- .../plistthread_99_14837509547609791955.plist | 64 ------------------- test/plistthread_9_10252977034645650818.plist | 64 ------------------- 304 files changed, 19456 deletions(-) delete mode 100644 test/plistsingle_001_1982654442753025810.plist delete mode 100644 test/plistsingle_002_10247957141852424771.plist delete mode 100644 test/plistsingle_003_9890302464338082284.plist delete mode 100644 test/plistsingle_004_12067882847020172541.plist delete mode 100644 test/plistsingle_005_5630617244238936838.plist delete mode 100644 test/plistsingle_006_16962063200094885239.plist delete mode 100644 test/plistsingle_007_4606220959910279904.plist delete mode 100644 test/plistsingle_008_580374351944512977.plist delete mode 100644 test/plistsingle_009_3198758014225338138.plist delete mode 100644 test/plistsingle_010_16003424265815961552.plist delete mode 100644 test/plistsingle_011_4269509797141902503.plist delete mode 100644 test/plistsingle_012_8017175502773619190.plist delete mode 100644 test/plistsingle_013_2332437477503628077.plist delete mode 100644 test/plistsingle_014_9319752689436326364.plist delete mode 100644 test/plistsingle_015_15757264582822281331.plist delete mode 100644 test/plistsingle_016_10449069917159320642.plist delete mode 100644 test/plistsingle_017_16886581810545275609.plist delete mode 100644 test/plistsingle_018_17272168241162376792.plist delete mode 100644 test/plistsingle_019_17475290896456108015.plist delete mode 100644 test/plistsingle_020_12881590431036913615.plist delete mode 100644 test/plistsingle_021_6199195307864246328.plist delete mode 100644 test/plistsingle_022_16972094787750017237.plist delete mode 100644 test/plistsingle_023_16768972132456286014.plist delete mode 100644 test/plistsingle_024_15313484845422615067.plist delete mode 100644 test/plistsingle_025_2551232506378335300.plist delete mode 100644 test/plistsingle_026_4260846535019004001.plist delete mode 100644 test/plistsingle_027_3820512020493704554.plist delete mode 100644 test/plistsingle_028_11451319586617536263.plist delete mode 100644 test/plistsingle_029_4983091736391934000.plist delete mode 100644 test/plistsingle_030_6812121053832316718.plist delete mode 100644 test/plistsingle_031_6925173976536768901.plist delete mode 100644 test/plistsingle_032_5460443177682812520.plist delete mode 100644 test/plistsingle_033_18222414041750270271.plist delete mode 100644 test/plistsingle_034_98050179961959002.plist delete mode 100644 test/plistsingle_035_3469172525986645265.plist delete mode 100644 test/plistsingle_036_7892337592068513972.plist delete mode 100644 test/plistsingle_037_11399061653955082123.plist delete mode 100644 test/plistsingle_038_8764298648067781446.plist delete mode 100644 test/plistsingle_039_8967456487733615421.plist delete mode 100644 test/plistsingle_040_14177229776248449453.plist delete mode 100644 test/plistsingle_041_1415223727808888950.plist delete mode 100644 test/plistsingle_042_16114302095886723879.plist delete mode 100644 test/plistsingle_043_9401472490851231312.plist delete mode 100644 test/plistsingle_044_10284630035580545369.plist delete mode 100644 test/plistsingle_045_3847118142194590402.plist delete mode 100644 test/plistsingle_046_9155312807857551091.plist delete mode 100644 test/plistsingle_047_2717800914471596124.plist delete mode 100644 test/plistsingle_048_2943449993522940917.plist delete mode 100644 test/plistsingle_049_14952682173846537566.plist delete mode 100644 test/plistsingle_050_164674247843652948.plist delete mode 100644 test/plistsingle_051_3671398309730221099.plist delete mode 100644 test/plistsingle_052_10625169558510862202.plist delete mode 100644 test/plistsingle_053_7761902666443324721.plist delete mode 100644 test/plistsingle_054_16179523907167503112.plist delete mode 100644 test/plistsingle_055_10302789346589621855.plist delete mode 100644 test/plistsingle_056_17339521907358041934.plist delete mode 100644 test/plistsingle_057_11654748697715948069.plist delete mode 100644 test/plistsingle_058_5104359173006278476.plist delete mode 100644 test/plistsingle_059_17866611512050558243.plist delete mode 100644 test/plistsingle_060_13692926178100942867.plist delete mode 100644 test/plistsingle_061_13244920293020499324.plist delete mode 100644 test/plistsingle_062_2801849921142396665.plist delete mode 100644 test/plistsingle_063_14566198871679280994.plist delete mode 100644 test/plistsingle_064_8194677400726075463.plist delete mode 100644 test/plistsingle_065_1726731025477295216.plist delete mode 100644 test/plistsingle_066_6257886556064623053.plist delete mode 100644 test/plistsingle_067_12134304457293579542.plist delete mode 100644 test/plistsingle_068_11811959429744441947.plist delete mode 100644 test/plistsingle_069_11507226631081024388.plist delete mode 100644 test/plistsingle_070_13827446741497847186.plist delete mode 100644 test/plistsingle_071_8142955006832575337.plist delete mode 100644 test/plistsingle_072_3288350689373352044.plist delete mode 100644 test/plistsingle_073_3646005366887694531.plist delete mode 100644 test/plistsingle_074_17475409542983758214.plist delete mode 100644 test/plistsingle_075_5465931072055442301.plist delete mode 100644 test/plistsingle_076_16451013258655101280.plist delete mode 100644 test/plistsingle_077_10360111425130154999.plist delete mode 100644 test/plistsingle_078_15043550312970159514.plist delete mode 100644 test/plistsingle_079_12425166650689334353.plist delete mode 100644 test/plistsingle_080_17464750084948464481.plist delete mode 100644 test/plistsingle_081_17024415570423165034.plist delete mode 100644 test/plistsingle_082_10070644321642523931.plist delete mode 100644 test/plistsingle_083_15755136056307795780.plist delete mode 100644 test/plistsingle_084_11729254263969926101.plist delete mode 100644 test/plistsingle_085_11526131608676194878.plist delete mode 100644 test/plistsingle_086_7638749907256822479.plist delete mode 100644 test/plistsingle_087_956354784084155192.plist delete mode 100644 test/plistsingle_088_815651583253766329.plist delete mode 100644 test/plistsingle_089_612528927960035106.plist delete mode 100644 test/plistsingle_090_217602653902721384.plist delete mode 100644 test/plistsingle_091_12979573517970179135.plist delete mode 100644 test/plistsingle_092_1569280530052225582.plist delete mode 100644 test/plistsingle_093_1682333452756677765.plist delete mode 100644 test/plistsingle_094_2649497068288422836.plist delete mode 100644 test/plistsingle_095_6156221130174990987.plist delete mode 100644 test/plistsingle_096_13301953729891419482.plist delete mode 100644 test/plistsingle_097_16673076075916105745.plist delete mode 100644 test/plistsingle_098_14464814920766470944.plist delete mode 100644 test/plistsingle_099_8618796317028236983.plist delete mode 100644 test/plistsingle_100_1323296195754830746.plist delete mode 100644 test/plistsingle_2_10715338952105027795.plist delete mode 100644 test/plistsingle_4_15737255920495926157.plist delete mode 100644 test/plistsinglefs_001_13988868595647931277.plist delete mode 100644 test/plistsinglefs_002_9212829835273891120.plist delete mode 100644 test/plistsinglefs_003_15681057685499493383.plist delete mode 100644 test/plistsinglefs_004_10085107550622083362.plist delete mode 100644 test/plistsinglefs_005_10288230205915814585.plist delete mode 100644 test/plistsinglefs_006_2529439733871077948.plist delete mode 100644 test/plistsinglefs_007_8966951627257032915.plist delete mode 100644 test/plistsinglefs_008_2551966157628691518.plist delete mode 100644 test/plistsinglefs_009_2755088812922422741.plist delete mode 100644 test/plistsinglefs_010_10363711595465424215.plist delete mode 100644 test/plistsinglefs_011_16017768848267870784.plist delete mode 100644 test/plistsinglefs_012_5277569891454924125.plist delete mode 100644 test/plistsinglefs_013_17286766887406418022.plist delete mode 100644 test/plistsinglefs_014_3649605537222963747.plist delete mode 100644 test/plistsinglefs_015_9334097271888235596.plist delete mode 100644 test/plistsinglefs_016_13943818359560746569.plist delete mode 100644 test/plistsinglefs_017_13831046911833116402.plist delete mode 100644 test/plistsinglefs_018_14532527445471578975.plist delete mode 100644 test/plistsinglefs_019_1962517932339908616.plist delete mode 100644 test/plistsinglefs_020_18156315275994242456.plist delete mode 100644 test/plistsinglefs_021_6147083095670645807.plist delete mode 100644 test/plistsinglefs_022_10471590852789339934.plist delete mode 100644 test/plistsinglefs_023_16909102746175294901.plist delete mode 100644 test/plistsinglefs_024_14700595300420940836.plist delete mode 100644 test/plistsinglefs_025_8823860739843059579.plist delete mode 100644 test/plistsinglefs_026_3512355274155447882.plist delete mode 100644 test/plistsinglefs_027_16165326099274897217.plist delete mode 100644 test/plistsinglefs_028_4920099694817211664.plist delete mode 100644 test/plistsinglefs_029_5153938306950590183.plist delete mode 100644 test/plistsinglefs_030_7698910624868602385.plist delete mode 100644 test/plistsinglefs_031_4327788278843916122.plist delete mode 100644 test/plistsinglefs_032_15628799752837039243.plist delete mode 100644 test/plistsinglefs_033_12122075690950471092.plist delete mode 100644 test/plistsinglefs_034_11154912075418726021.plist delete mode 100644 test/plistsinglefs_035_11041859152714273838.plist delete mode 100644 test/plistsinglefs_036_4005408066922675775.plist delete mode 100644 test/plistsinglefs_037_9690181276564769640.plist delete mode 100644 test/plistsinglefs_038_3416698981011843369.plist delete mode 100644 test/plistsinglefs_039_9101472190653937234.plist delete mode 100644 test/plistsinglefs_040_16172580577588737498.plist delete mode 100644 test/plistsinglefs_041_1096958849903872145.plist delete mode 100644 test/plistsinglefs_042_5520123915985740852.plist delete mode 100644 test/plistsinglefs_043_9026847977872309003.plist delete mode 100644 test/plistsinglefs_044_4439907377749543598.plist delete mode 100644 test/plistsinglefs_045_4552960300453995781.plist delete mode 100644 test/plistsinglefs_046_3088229501600039400.plist delete mode 100644 test/plistsinglefs_047_15850200365667497151.plist delete mode 100644 test/plistsinglefs_048_2499520415689206994.plist delete mode 100644 test/plistsinglefs_049_15261491279756664745.plist delete mode 100644 test/plistsinglefs_050_12941271169339841947.plist delete mode 100644 test/plistsinglefs_051_179018830295562180.plist delete mode 100644 test/plistsinglefs_052_1888632858936230881.plist delete mode 100644 test/plistsinglefs_053_1448298344410931434.plist delete mode 100644 test/plistsinglefs_054_10509376754954140495.plist delete mode 100644 test/plistsinglefs_055_3826981631781473208.plist delete mode 100644 test/plistsinglefs_056_14599881111667244117.plist delete mode 100644 test/plistsinglefs_057_14396758456373512894.plist delete mode 100644 test/plistsinglefs_058_2364999852292302675.plist delete mode 100644 test/plistsinglefs_059_14374232032615899324.plist delete mode 100644 test/plistsinglefs_060_6947539013353553244.plist delete mode 100644 test/plistsinglefs_061_13385050906739508211.plist delete mode 100644 test/plistsinglefs_062_8076856241076547522.plist delete mode 100644 test/plistsinglefs_063_14514368134462502489.plist delete mode 100644 test/plistsinglefs_064_13631210589733188432.plist delete mode 100644 test/plistsinglefs_065_1897296121059129383.plist delete mode 100644 test/plistsinglefs_066_5644961826690846070.plist delete mode 100644 test/plistsinglefs_067_18406967875130406573.plist delete mode 100644 test/plistsinglefs_068_11199069884742767716.plist delete mode 100644 test/plistsinglefs_069_5322616799141708475.plist delete mode 100644 test/plistsinglefs_070_10307150971210564661.plist delete mode 100644 test/plistsinglefs_071_3869639077824609694.plist delete mode 100644 test/plistsinglefs_072_17991875394415467183.plist delete mode 100644 test/plistsinglefs_073_11554363501029512216.plist delete mode 100644 test/plistsinglefs_074_9563374324310166977.plist delete mode 100644 test/plistsinglefs_075_15357147572900269258.plist delete mode 100644 test/plistsinglefs_076_2221908964878329339.plist delete mode 100644 test/plistsinglefs_077_8098643525456210596.plist delete mode 100644 test/plistsinglefs_078_2849303450439809261.plist delete mode 100644 test/plistsinglefs_079_2544535467404288950.plist delete mode 100644 test/plistsinglefs_080_15714431376569431070.plist delete mode 100644 test/plistsinglefs_081_3705199196245834421.plist delete mode 100644 test/plistsinglefs_082_4952411726064781976.plist delete mode 100644 test/plistsinglefs_083_11389923619450736943.plist delete mode 100644 test/plistsinglefs_084_8755195797935539018.plist delete mode 100644 test/plistsinglefs_085_2961422549345436737.plist delete mode 100644 test/plistsinglefs_086_1496691750491480356.plist delete mode 100644 test/plistsinglefs_087_14066701263623150715.plist delete mode 100644 test/plistsinglefs_088_14389327766149110326.plist delete mode 100644 test/plistsinglefs_089_14694095749184630637.plist delete mode 100644 test/plistsinglefs_090_9248248590702766911.plist delete mode 100644 test/plistsinglefs_091_14933021800344860776.plist delete mode 100644 test/plistsinglefs_092_16397752599198817157.plist delete mode 100644 test/plistsinglefs_093_16284699676494364974.plist delete mode 100644 test/plistsinglefs_094_2424896202907578763.plist delete mode 100644 test/plistsinglefs_095_17364916214730562228.plist delete mode 100644 test/plistsinglefs_096_12941751148648693521.plist delete mode 100644 test/plistsinglefs_097_9570628802624007258.plist delete mode 100644 test/plistsinglefs_098_4887471389760824759.plist delete mode 100644 test/plistsinglefs_099_10733489993499058720.plist delete mode 100644 test/plistsinglefs_100_9929666059625854277.plist delete mode 100644 test/plistsinglefs_2_5071803044175591832.plist delete mode 100644 test/plistsinglefs_4_8874587116046348874.plist delete mode 100644 test/plistthread_100_5268126128994548098.plist delete mode 100644 test/plistthread_10_7575256409926221148.plist delete mode 100644 test/plistthread_11_14012768303312176115.plist delete mode 100644 test/plistthread_12_8704573637649215426.plist delete mode 100644 test/plistthread_13_15142085531035170393.plist delete mode 100644 test/plistthread_14_14258927986305856336.plist delete mode 100644 test/plistthread_15_2525013517631797287.plist delete mode 100644 test/plistthread_16_6272679223263513974.plist delete mode 100644 test/plistthread_17_587941197993522861.plist delete mode 100644 test/plistthread_18_11826787281315435620.plist delete mode 100644 test/plistthread_19_5950334195714376379.plist delete mode 100644 test/plistthread_1_14399305487663705930.plist delete mode 100644 test/plistthread_20_13568988565912509851.plist delete mode 100644 test/plistthread_21_806736226868230084.plist delete mode 100644 test/plistthread_22_2516350255508898785.plist delete mode 100644 test/plistthread_23_2076015740983599338.plist delete mode 100644 test/plistthread_24_11137094151526808399.plist delete mode 100644 test/plistthread_25_4454699028354141112.plist delete mode 100644 test/plistthread_26_15227598508239912021.plist delete mode 100644 test/plistthread_27_15024475852946180798.plist delete mode 100644 test/plistthread_28_2992717248864970579.plist delete mode 100644 test/plistthread_29_15001949429188567228.plist delete mode 100644 test/plistthread_2_1264066879641766011.plist delete mode 100644 test/plistthread_30_16800297974161405402.plist delete mode 100644 test/plistthread_31_1724676246476540049.plist delete mode 100644 test/plistthread_32_6147841312558408756.plist delete mode 100644 test/plistthread_33_9654565374444976907.plist delete mode 100644 test/plistthread_34_5067624774322211502.plist delete mode 100644 test/plistthread_35_5180677697026663685.plist delete mode 100644 test/plistthread_36_3715946898172707304.plist delete mode 100644 test/plistthread_37_16477917762240165055.plist delete mode 100644 test/plistthread_38_3127237812261874898.plist delete mode 100644 test/plistthread_39_15889208676329332649.plist delete mode 100644 test/plistthread_3_7140801440219647268.plist delete mode 100644 test/plistthread_40_8326628021441270289.plist delete mode 100644 test/plistthread_41_4955505675416584026.plist delete mode 100644 test/plistthread_42_16256517149409707147.plist delete mode 100644 test/plistthread_43_12749793087523138996.plist delete mode 100644 test/plistthread_44_11782629471991393925.plist delete mode 100644 test/plistthread_45_11669576549286941742.plist delete mode 100644 test/plistthread_46_4633125463495343679.plist delete mode 100644 test/plistthread_47_10317898673137437544.plist delete mode 100644 test/plistthread_48_4044416377584511273.plist delete mode 100644 test/plistthread_49_9729189587226605138.plist delete mode 100644 test/plistthread_4_9349308885974001333.plist delete mode 100644 test/plistthread_50_337288598857358744.plist delete mode 100644 test/plistthread_51_6774800492243313711.plist delete mode 100644 test/plistthread_52_11099308249362007838.plist delete mode 100644 test/plistthread_53_17536820142747962805.plist delete mode 100644 test/plistthread_54_15328312696993608740.plist delete mode 100644 test/plistthread_55_9451578136415727483.plist delete mode 100644 test/plistthread_56_4140072670728115786.plist delete mode 100644 test/plistthread_57_16793043495847565121.plist delete mode 100644 test/plistthread_58_5547817091389879568.plist delete mode 100644 test/plistthread_59_5781655703523258087.plist delete mode 100644 test/plistthread_5_2911796992588046366.plist delete mode 100644 test/plistthread_60_10991428992038092119.plist delete mode 100644 test/plistthread_61_16645486244840538688.plist delete mode 100644 test/plistthread_62_5905287288027592029.plist delete mode 100644 test/plistthread_63_17914484283979085926.plist delete mode 100644 test/plistthread_64_4277322933795631651.plist delete mode 100644 test/plistthread_65_9961814668460903500.plist delete mode 100644 test/plistthread_66_14571535756133414473.plist delete mode 100644 test/plistthread_67_14458764308405784306.plist delete mode 100644 test/plistthread_68_15160244842044246879.plist delete mode 100644 test/plistthread_69_2590235328912576520.plist delete mode 100644 test/plistthread_6_17034033309178903855.plist delete mode 100644 test/plistthread_70_2046541294716826070.plist delete mode 100644 test/plistthread_71_14616585992220599181.plist delete mode 100644 test/plistthread_72_9840547231846559024.plist delete mode 100644 test/plistthread_73_16308775082072161287.plist delete mode 100644 test/plistthread_74_10712824947194751266.plist delete mode 100644 test/plistthread_75_10915947602488482489.plist delete mode 100644 test/plistthread_76_3157157130443745852.plist delete mode 100644 test/plistthread_77_9594669023829700819.plist delete mode 100644 test/plistthread_78_3179683554201359422.plist delete mode 100644 test/plistthread_79_3382806209495090645.plist delete mode 100644 test/plistthread_7_10596521415792948888.plist delete mode 100644 test/plistthread_80_11148127811807683165.plist delete mode 100644 test/plistthread_81_4710580734049625446.plist delete mode 100644 test/plistthread_82_16234269515818183255.plist delete mode 100644 test/plistthread_83_3441582694911078208.plist delete mode 100644 test/plistthread_84_1367632206203953993.plist delete mode 100644 test/plistthread_85_1254860758476323826.plist delete mode 100644 test/plistthread_86_9520163457575722787.plist delete mode 100644 test/plistthread_87_15204655192240994636.plist delete mode 100644 test/plistthread_88_3308300643241112613.plist delete mode 100644 test/plistthread_89_8993073852883206478.plist delete mode 100644 test/plistthread_8_16690207453054783769.plist delete mode 100644 test/plistthread_90_12651528525613051460.plist delete mode 100644 test/plistthread_91_6967036790947779611.plist delete mode 100644 test/plistthread_92_13920808039728420714.plist delete mode 100644 test/plistthread_93_14361142554253720161.plist delete mode 100644 test/plistthread_94_16299491327098962488.plist delete mode 100644 test/plistthread_95_4535142376562078159.plist delete mode 100644 test/plistthread_96_8422524077981450558.plist delete mode 100644 test/plistthread_97_8625646733275181781.plist delete mode 100644 test/plistthread_98_8399997654223836988.plist delete mode 100644 test/plistthread_99_14837509547609791955.plist delete mode 100644 test/plistthread_9_10252977034645650818.plist diff --git a/test/plistsingle_001_1982654442753025810.plist b/test/plistsingle_001_1982654442753025810.plist deleted file mode 100644 index cb62a9370ad..00000000000 --- a/test/plistsingle_001_1982654442753025810.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_001.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_002_10247957141852424771.plist b/test/plistsingle_002_10247957141852424771.plist deleted file mode 100644 index 86707a56049..00000000000 --- a/test/plistsingle_002_10247957141852424771.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_002.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_003_9890302464338082284.plist b/test/plistsingle_003_9890302464338082284.plist deleted file mode 100644 index 325bd3851c8..00000000000 --- a/test/plistsingle_003_9890302464338082284.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_003.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_004_12067882847020172541.plist b/test/plistsingle_004_12067882847020172541.plist deleted file mode 100644 index dceed29577a..00000000000 --- a/test/plistsingle_004_12067882847020172541.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_004.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_005_5630617244238936838.plist b/test/plistsingle_005_5630617244238936838.plist deleted file mode 100644 index f71be31fac5..00000000000 --- a/test/plistsingle_005_5630617244238936838.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_005.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_006_16962063200094885239.plist b/test/plistsingle_006_16962063200094885239.plist deleted file mode 100644 index 6e2849e4c56..00000000000 --- a/test/plistsingle_006_16962063200094885239.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_006.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_007_4606220959910279904.plist b/test/plistsingle_007_4606220959910279904.plist deleted file mode 100644 index 6a7842679b9..00000000000 --- a/test/plistsingle_007_4606220959910279904.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_007.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_008_580374351944512977.plist b/test/plistsingle_008_580374351944512977.plist deleted file mode 100644 index ee79735aca5..00000000000 --- a/test/plistsingle_008_580374351944512977.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_008.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_009_3198758014225338138.plist b/test/plistsingle_009_3198758014225338138.plist deleted file mode 100644 index 62a396e8f92..00000000000 --- a/test/plistsingle_009_3198758014225338138.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_009.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_010_16003424265815961552.plist b/test/plistsingle_010_16003424265815961552.plist deleted file mode 100644 index db515b711e5..00000000000 --- a/test/plistsingle_010_16003424265815961552.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_010.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_011_4269509797141902503.plist b/test/plistsingle_011_4269509797141902503.plist deleted file mode 100644 index de4b7ce668e..00000000000 --- a/test/plistsingle_011_4269509797141902503.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_011.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_012_8017175502773619190.plist b/test/plistsingle_012_8017175502773619190.plist deleted file mode 100644 index 0fbdb915a26..00000000000 --- a/test/plistsingle_012_8017175502773619190.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_012.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_013_2332437477503628077.plist b/test/plistsingle_013_2332437477503628077.plist deleted file mode 100644 index 772648cc7f5..00000000000 --- a/test/plistsingle_013_2332437477503628077.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_013.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_014_9319752689436326364.plist b/test/plistsingle_014_9319752689436326364.plist deleted file mode 100644 index 0880cbe8ea0..00000000000 --- a/test/plistsingle_014_9319752689436326364.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_014.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_015_15757264582822281331.plist b/test/plistsingle_015_15757264582822281331.plist deleted file mode 100644 index 686ad4ee6af..00000000000 --- a/test/plistsingle_015_15757264582822281331.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_015.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_016_10449069917159320642.plist b/test/plistsingle_016_10449069917159320642.plist deleted file mode 100644 index 66b20f77ff9..00000000000 --- a/test/plistsingle_016_10449069917159320642.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_016.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_017_16886581810545275609.plist b/test/plistsingle_017_16886581810545275609.plist deleted file mode 100644 index 41abc120ff9..00000000000 --- a/test/plistsingle_017_16886581810545275609.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_017.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_018_17272168241162376792.plist b/test/plistsingle_018_17272168241162376792.plist deleted file mode 100644 index f01d4520ebd..00000000000 --- a/test/plistsingle_018_17272168241162376792.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_018.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_019_17475290896456108015.plist b/test/plistsingle_019_17475290896456108015.plist deleted file mode 100644 index fd47b79472f..00000000000 --- a/test/plistsingle_019_17475290896456108015.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_019.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_020_12881590431036913615.plist b/test/plistsingle_020_12881590431036913615.plist deleted file mode 100644 index 1a8e7faf474..00000000000 --- a/test/plistsingle_020_12881590431036913615.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_020.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_021_6199195307864246328.plist b/test/plistsingle_021_6199195307864246328.plist deleted file mode 100644 index 38577b220e8..00000000000 --- a/test/plistsingle_021_6199195307864246328.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_021.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_022_16972094787750017237.plist b/test/plistsingle_022_16972094787750017237.plist deleted file mode 100644 index 347bde4f563..00000000000 --- a/test/plistsingle_022_16972094787750017237.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_022.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_023_16768972132456286014.plist b/test/plistsingle_023_16768972132456286014.plist deleted file mode 100644 index 8e6d0bd78f1..00000000000 --- a/test/plistsingle_023_16768972132456286014.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_023.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_024_15313484845422615067.plist b/test/plistsingle_024_15313484845422615067.plist deleted file mode 100644 index ba7260aecf5..00000000000 --- a/test/plistsingle_024_15313484845422615067.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_024.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_025_2551232506378335300.plist b/test/plistsingle_025_2551232506378335300.plist deleted file mode 100644 index 683c29efd9a..00000000000 --- a/test/plistsingle_025_2551232506378335300.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_025.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_026_4260846535019004001.plist b/test/plistsingle_026_4260846535019004001.plist deleted file mode 100644 index ee51e3c7682..00000000000 --- a/test/plistsingle_026_4260846535019004001.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_026.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_027_3820512020493704554.plist b/test/plistsingle_027_3820512020493704554.plist deleted file mode 100644 index 4f3ec0189e1..00000000000 --- a/test/plistsingle_027_3820512020493704554.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_027.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_028_11451319586617536263.plist b/test/plistsingle_028_11451319586617536263.plist deleted file mode 100644 index 65232169450..00000000000 --- a/test/plistsingle_028_11451319586617536263.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_028.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_029_4983091736391934000.plist b/test/plistsingle_029_4983091736391934000.plist deleted file mode 100644 index 3dcd20de2ad..00000000000 --- a/test/plistsingle_029_4983091736391934000.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_029.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_030_6812121053832316718.plist b/test/plistsingle_030_6812121053832316718.plist deleted file mode 100644 index 602a8009bf8..00000000000 --- a/test/plistsingle_030_6812121053832316718.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_030.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_031_6925173976536768901.plist b/test/plistsingle_031_6925173976536768901.plist deleted file mode 100644 index 491965c8dae..00000000000 --- a/test/plistsingle_031_6925173976536768901.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_031.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_032_5460443177682812520.plist b/test/plistsingle_032_5460443177682812520.plist deleted file mode 100644 index 20558317322..00000000000 --- a/test/plistsingle_032_5460443177682812520.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_032.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_033_18222414041750270271.plist b/test/plistsingle_033_18222414041750270271.plist deleted file mode 100644 index 5c2990cb97b..00000000000 --- a/test/plistsingle_033_18222414041750270271.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_033.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_034_98050179961959002.plist b/test/plistsingle_034_98050179961959002.plist deleted file mode 100644 index 3f838400df8..00000000000 --- a/test/plistsingle_034_98050179961959002.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_034.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_035_3469172525986645265.plist b/test/plistsingle_035_3469172525986645265.plist deleted file mode 100644 index f657195ea55..00000000000 --- a/test/plistsingle_035_3469172525986645265.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_035.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_036_7892337592068513972.plist b/test/plistsingle_036_7892337592068513972.plist deleted file mode 100644 index dffc3cb0a54..00000000000 --- a/test/plistsingle_036_7892337592068513972.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_036.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_037_11399061653955082123.plist b/test/plistsingle_037_11399061653955082123.plist deleted file mode 100644 index 0601292072e..00000000000 --- a/test/plistsingle_037_11399061653955082123.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_037.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_038_8764298648067781446.plist b/test/plistsingle_038_8764298648067781446.plist deleted file mode 100644 index 6acc9b549b0..00000000000 --- a/test/plistsingle_038_8764298648067781446.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_038.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_039_8967456487733615421.plist b/test/plistsingle_039_8967456487733615421.plist deleted file mode 100644 index 8dcabe7efd9..00000000000 --- a/test/plistsingle_039_8967456487733615421.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_039.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_040_14177229776248449453.plist b/test/plistsingle_040_14177229776248449453.plist deleted file mode 100644 index d1822a4af2c..00000000000 --- a/test/plistsingle_040_14177229776248449453.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_040.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_041_1415223727808888950.plist b/test/plistsingle_041_1415223727808888950.plist deleted file mode 100644 index bfd7082b128..00000000000 --- a/test/plistsingle_041_1415223727808888950.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_041.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_042_16114302095886723879.plist b/test/plistsingle_042_16114302095886723879.plist deleted file mode 100644 index af5d142e467..00000000000 --- a/test/plistsingle_042_16114302095886723879.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_042.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_043_9401472490851231312.plist b/test/plistsingle_043_9401472490851231312.plist deleted file mode 100644 index cd0ca30f786..00000000000 --- a/test/plistsingle_043_9401472490851231312.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_043.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_044_10284630035580545369.plist b/test/plistsingle_044_10284630035580545369.plist deleted file mode 100644 index c5e1d2d693e..00000000000 --- a/test/plistsingle_044_10284630035580545369.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_044.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_045_3847118142194590402.plist b/test/plistsingle_045_3847118142194590402.plist deleted file mode 100644 index 0afed07c492..00000000000 --- a/test/plistsingle_045_3847118142194590402.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_045.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_046_9155312807857551091.plist b/test/plistsingle_046_9155312807857551091.plist deleted file mode 100644 index 743cb3d9420..00000000000 --- a/test/plistsingle_046_9155312807857551091.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_046.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_047_2717800914471596124.plist b/test/plistsingle_047_2717800914471596124.plist deleted file mode 100644 index 011c134b8df..00000000000 --- a/test/plistsingle_047_2717800914471596124.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_047.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_048_2943449993522940917.plist b/test/plistsingle_048_2943449993522940917.plist deleted file mode 100644 index 6d84da16b1a..00000000000 --- a/test/plistsingle_048_2943449993522940917.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_048.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_049_14952682173846537566.plist b/test/plistsingle_049_14952682173846537566.plist deleted file mode 100644 index 993568774d9..00000000000 --- a/test/plistsingle_049_14952682173846537566.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_049.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_050_164674247843652948.plist b/test/plistsingle_050_164674247843652948.plist deleted file mode 100644 index f30eb8eeb36..00000000000 --- a/test/plistsingle_050_164674247843652948.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_050.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_051_3671398309730221099.plist b/test/plistsingle_051_3671398309730221099.plist deleted file mode 100644 index d6b47d90e7c..00000000000 --- a/test/plistsingle_051_3671398309730221099.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_051.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_052_10625169558510862202.plist b/test/plistsingle_052_10625169558510862202.plist deleted file mode 100644 index 09d692cd9f4..00000000000 --- a/test/plistsingle_052_10625169558510862202.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_052.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_053_7761902666443324721.plist b/test/plistsingle_053_7761902666443324721.plist deleted file mode 100644 index 76d2b9fa59e..00000000000 --- a/test/plistsingle_053_7761902666443324721.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_053.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_054_16179523907167503112.plist b/test/plistsingle_054_16179523907167503112.plist deleted file mode 100644 index e64af3827ea..00000000000 --- a/test/plistsingle_054_16179523907167503112.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_054.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_055_10302789346589621855.plist b/test/plistsingle_055_10302789346589621855.plist deleted file mode 100644 index 977741e5a1d..00000000000 --- a/test/plistsingle_055_10302789346589621855.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_055.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_056_17339521907358041934.plist b/test/plistsingle_056_17339521907358041934.plist deleted file mode 100644 index 1c9b091906d..00000000000 --- a/test/plistsingle_056_17339521907358041934.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_056.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_057_11654748697715948069.plist b/test/plistsingle_057_11654748697715948069.plist deleted file mode 100644 index f29b6bb5c2d..00000000000 --- a/test/plistsingle_057_11654748697715948069.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_057.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_058_5104359173006278476.plist b/test/plistsingle_058_5104359173006278476.plist deleted file mode 100644 index c1ad419d2fb..00000000000 --- a/test/plistsingle_058_5104359173006278476.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_058.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_059_17866611512050558243.plist b/test/plistsingle_059_17866611512050558243.plist deleted file mode 100644 index e18e5b5af69..00000000000 --- a/test/plistsingle_059_17866611512050558243.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_059.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_060_13692926178100942867.plist b/test/plistsingle_060_13692926178100942867.plist deleted file mode 100644 index 104bcd61ffa..00000000000 --- a/test/plistsingle_060_13692926178100942867.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_060.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_061_13244920293020499324.plist b/test/plistsingle_061_13244920293020499324.plist deleted file mode 100644 index f6feeb3a7fa..00000000000 --- a/test/plistsingle_061_13244920293020499324.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_061.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_062_2801849921142396665.plist b/test/plistsingle_062_2801849921142396665.plist deleted file mode 100644 index 96f7f343872..00000000000 --- a/test/plistsingle_062_2801849921142396665.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_062.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_063_14566198871679280994.plist b/test/plistsingle_063_14566198871679280994.plist deleted file mode 100644 index 00fab31134d..00000000000 --- a/test/plistsingle_063_14566198871679280994.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_063.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_064_8194677400726075463.plist b/test/plistsingle_064_8194677400726075463.plist deleted file mode 100644 index 95a3c28f694..00000000000 --- a/test/plistsingle_064_8194677400726075463.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_064.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_065_1726731025477295216.plist b/test/plistsingle_065_1726731025477295216.plist deleted file mode 100644 index b94fb79a98d..00000000000 --- a/test/plistsingle_065_1726731025477295216.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_065.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_066_6257886556064623053.plist b/test/plistsingle_066_6257886556064623053.plist deleted file mode 100644 index 2645395c117..00000000000 --- a/test/plistsingle_066_6257886556064623053.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_066.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_067_12134304457293579542.plist b/test/plistsingle_067_12134304457293579542.plist deleted file mode 100644 index d1e050b62e5..00000000000 --- a/test/plistsingle_067_12134304457293579542.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_067.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_068_11811959429744441947.plist b/test/plistsingle_068_11811959429744441947.plist deleted file mode 100644 index 51a357f6d03..00000000000 --- a/test/plistsingle_068_11811959429744441947.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_068.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_069_11507226631081024388.plist b/test/plistsingle_069_11507226631081024388.plist deleted file mode 100644 index cc6f099e90a..00000000000 --- a/test/plistsingle_069_11507226631081024388.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_069.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_070_13827446741497847186.plist b/test/plistsingle_070_13827446741497847186.plist deleted file mode 100644 index 89cefe55a29..00000000000 --- a/test/plistsingle_070_13827446741497847186.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_070.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_071_8142955006832575337.plist b/test/plistsingle_071_8142955006832575337.plist deleted file mode 100644 index 90df4b8642b..00000000000 --- a/test/plistsingle_071_8142955006832575337.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_071.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_072_3288350689373352044.plist b/test/plistsingle_072_3288350689373352044.plist deleted file mode 100644 index 3ffc48a4e2c..00000000000 --- a/test/plistsingle_072_3288350689373352044.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_072.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_073_3646005366887694531.plist b/test/plistsingle_073_3646005366887694531.plist deleted file mode 100644 index e5c75f0cb90..00000000000 --- a/test/plistsingle_073_3646005366887694531.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_073.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_074_17475409542983758214.plist b/test/plistsingle_074_17475409542983758214.plist deleted file mode 100644 index 82c923f6b6f..00000000000 --- a/test/plistsingle_074_17475409542983758214.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_074.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_075_5465931072055442301.plist b/test/plistsingle_075_5465931072055442301.plist deleted file mode 100644 index c75e431dec5..00000000000 --- a/test/plistsingle_075_5465931072055442301.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_075.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_076_16451013258655101280.plist b/test/plistsingle_076_16451013258655101280.plist deleted file mode 100644 index e6eb1341369..00000000000 --- a/test/plistsingle_076_16451013258655101280.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_076.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_077_10360111425130154999.plist b/test/plistsingle_077_10360111425130154999.plist deleted file mode 100644 index 0f72ceb12a1..00000000000 --- a/test/plistsingle_077_10360111425130154999.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_077.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_078_15043550312970159514.plist b/test/plistsingle_078_15043550312970159514.plist deleted file mode 100644 index bbf5576a116..00000000000 --- a/test/plistsingle_078_15043550312970159514.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_078.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_079_12425166650689334353.plist b/test/plistsingle_079_12425166650689334353.plist deleted file mode 100644 index cf221d21edb..00000000000 --- a/test/plistsingle_079_12425166650689334353.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_079.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_080_17464750084948464481.plist b/test/plistsingle_080_17464750084948464481.plist deleted file mode 100644 index fa8c5db7ece..00000000000 --- a/test/plistsingle_080_17464750084948464481.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_080.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_081_17024415570423165034.plist b/test/plistsingle_081_17024415570423165034.plist deleted file mode 100644 index be6f6cf9579..00000000000 --- a/test/plistsingle_081_17024415570423165034.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_081.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_082_10070644321642523931.plist b/test/plistsingle_082_10070644321642523931.plist deleted file mode 100644 index 84e0dc9bf3a..00000000000 --- a/test/plistsingle_082_10070644321642523931.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_082.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_083_15755136056307795780.plist b/test/plistsingle_083_15755136056307795780.plist deleted file mode 100644 index 1ff21f3b922..00000000000 --- a/test/plistsingle_083_15755136056307795780.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_083.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_084_11729254263969926101.plist b/test/plistsingle_084_11729254263969926101.plist deleted file mode 100644 index 2c5bec2f70b..00000000000 --- a/test/plistsingle_084_11729254263969926101.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_084.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_085_11526131608676194878.plist b/test/plistsingle_085_11526131608676194878.plist deleted file mode 100644 index de847ad5502..00000000000 --- a/test/plistsingle_085_11526131608676194878.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_085.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_086_7638749907256822479.plist b/test/plistsingle_086_7638749907256822479.plist deleted file mode 100644 index 35bd63d715f..00000000000 --- a/test/plistsingle_086_7638749907256822479.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_086.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_087_956354784084155192.plist b/test/plistsingle_087_956354784084155192.plist deleted file mode 100644 index 13b108998e8..00000000000 --- a/test/plistsingle_087_956354784084155192.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_087.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_088_815651583253766329.plist b/test/plistsingle_088_815651583253766329.plist deleted file mode 100644 index ccbadcaf7d5..00000000000 --- a/test/plistsingle_088_815651583253766329.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_088.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_089_612528927960035106.plist b/test/plistsingle_089_612528927960035106.plist deleted file mode 100644 index 82c96f075b6..00000000000 --- a/test/plistsingle_089_612528927960035106.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_089.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_090_217602653902721384.plist b/test/plistsingle_090_217602653902721384.plist deleted file mode 100644 index 08040f02e04..00000000000 --- a/test/plistsingle_090_217602653902721384.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_090.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_091_12979573517970179135.plist b/test/plistsingle_091_12979573517970179135.plist deleted file mode 100644 index 290a7ec6b17..00000000000 --- a/test/plistsingle_091_12979573517970179135.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_091.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_092_1569280530052225582.plist b/test/plistsingle_092_1569280530052225582.plist deleted file mode 100644 index c0d303b4c33..00000000000 --- a/test/plistsingle_092_1569280530052225582.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_092.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_093_1682333452756677765.plist b/test/plistsingle_093_1682333452756677765.plist deleted file mode 100644 index 1cf71409a1a..00000000000 --- a/test/plistsingle_093_1682333452756677765.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_093.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_094_2649497068288422836.plist b/test/plistsingle_094_2649497068288422836.plist deleted file mode 100644 index 021acde87ef..00000000000 --- a/test/plistsingle_094_2649497068288422836.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_094.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_095_6156221130174990987.plist b/test/plistsingle_095_6156221130174990987.plist deleted file mode 100644 index 5dfcb990b8d..00000000000 --- a/test/plistsingle_095_6156221130174990987.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_095.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_096_13301953729891419482.plist b/test/plistsingle_096_13301953729891419482.plist deleted file mode 100644 index 2bcfe39a11d..00000000000 --- a/test/plistsingle_096_13301953729891419482.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_096.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_097_16673076075916105745.plist b/test/plistsingle_097_16673076075916105745.plist deleted file mode 100644 index e40be88e615..00000000000 --- a/test/plistsingle_097_16673076075916105745.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_097.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_098_14464814920766470944.plist b/test/plistsingle_098_14464814920766470944.plist deleted file mode 100644 index 395f2c8525b..00000000000 --- a/test/plistsingle_098_14464814920766470944.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_098.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_099_8618796317028236983.plist b/test/plistsingle_099_8618796317028236983.plist deleted file mode 100644 index 66a6aa0b5be..00000000000 --- a/test/plistsingle_099_8618796317028236983.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_099.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_100_1323296195754830746.plist b/test/plistsingle_100_1323296195754830746.plist deleted file mode 100644 index dd5a8f3eb6c..00000000000 --- a/test/plistsingle_100_1323296195754830746.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_100.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_2_10715338952105027795.plist b/test/plistsingle_2_10715338952105027795.plist deleted file mode 100644 index 58176d2ecc4..00000000000 --- a/test/plistsingle_2_10715338952105027795.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_2.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsingle_4_15737255920495926157.plist b/test/plistsingle_4_15737255920495926157.plist deleted file mode 100644 index 46ad2323892..00000000000 --- a/test/plistsingle_4_15737255920495926157.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - single_4.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_001_13988868595647931277.plist b/test/plistsinglefs_001_13988868595647931277.plist deleted file mode 100644 index 29eb609ceb1..00000000000 --- a/test/plistsinglefs_001_13988868595647931277.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_001.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_002_9212829835273891120.plist b/test/plistsinglefs_002_9212829835273891120.plist deleted file mode 100644 index 282bf76176e..00000000000 --- a/test/plistsinglefs_002_9212829835273891120.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_002.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_003_15681057685499493383.plist b/test/plistsinglefs_003_15681057685499493383.plist deleted file mode 100644 index e763d98adc4..00000000000 --- a/test/plistsinglefs_003_15681057685499493383.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_003.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_004_10085107550622083362.plist b/test/plistsinglefs_004_10085107550622083362.plist deleted file mode 100644 index b525bc47728..00000000000 --- a/test/plistsinglefs_004_10085107550622083362.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_004.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_005_10288230205915814585.plist b/test/plistsinglefs_005_10288230205915814585.plist deleted file mode 100644 index fe05b114b38..00000000000 --- a/test/plistsinglefs_005_10288230205915814585.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_005.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_006_2529439733871077948.plist b/test/plistsinglefs_006_2529439733871077948.plist deleted file mode 100644 index 815fe9c4b61..00000000000 --- a/test/plistsinglefs_006_2529439733871077948.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_006.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_007_8966951627257032915.plist b/test/plistsinglefs_007_8966951627257032915.plist deleted file mode 100644 index 2513ad14281..00000000000 --- a/test/plistsinglefs_007_8966951627257032915.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_007.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_008_2551966157628691518.plist b/test/plistsinglefs_008_2551966157628691518.plist deleted file mode 100644 index 1f71c2860e9..00000000000 --- a/test/plistsinglefs_008_2551966157628691518.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_008.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_009_2755088812922422741.plist b/test/plistsinglefs_009_2755088812922422741.plist deleted file mode 100644 index 2164564c77c..00000000000 --- a/test/plistsinglefs_009_2755088812922422741.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_009.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_010_10363711595465424215.plist b/test/plistsinglefs_010_10363711595465424215.plist deleted file mode 100644 index 31fa64158c9..00000000000 --- a/test/plistsinglefs_010_10363711595465424215.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_010.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_011_16017768848267870784.plist b/test/plistsinglefs_011_16017768848267870784.plist deleted file mode 100644 index b66027b48f9..00000000000 --- a/test/plistsinglefs_011_16017768848267870784.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_011.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_012_5277569891454924125.plist b/test/plistsinglefs_012_5277569891454924125.plist deleted file mode 100644 index 3a12b941fad..00000000000 --- a/test/plistsinglefs_012_5277569891454924125.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_012.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_013_17286766887406418022.plist b/test/plistsinglefs_013_17286766887406418022.plist deleted file mode 100644 index 4c9fa01c7ef..00000000000 --- a/test/plistsinglefs_013_17286766887406418022.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_013.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_014_3649605537222963747.plist b/test/plistsinglefs_014_3649605537222963747.plist deleted file mode 100644 index 1f91240f160..00000000000 --- a/test/plistsinglefs_014_3649605537222963747.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_014.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_015_9334097271888235596.plist b/test/plistsinglefs_015_9334097271888235596.plist deleted file mode 100644 index a27c59295b6..00000000000 --- a/test/plistsinglefs_015_9334097271888235596.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_015.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_016_13943818359560746569.plist b/test/plistsinglefs_016_13943818359560746569.plist deleted file mode 100644 index d5b23ea41ca..00000000000 --- a/test/plistsinglefs_016_13943818359560746569.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_016.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_017_13831046911833116402.plist b/test/plistsinglefs_017_13831046911833116402.plist deleted file mode 100644 index 3ebee2367cf..00000000000 --- a/test/plistsinglefs_017_13831046911833116402.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_017.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_018_14532527445471578975.plist b/test/plistsinglefs_018_14532527445471578975.plist deleted file mode 100644 index e05f8a5910a..00000000000 --- a/test/plistsinglefs_018_14532527445471578975.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_018.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_019_1962517932339908616.plist b/test/plistsinglefs_019_1962517932339908616.plist deleted file mode 100644 index e0d8fcb12f4..00000000000 --- a/test/plistsinglefs_019_1962517932339908616.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_019.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_020_18156315275994242456.plist b/test/plistsinglefs_020_18156315275994242456.plist deleted file mode 100644 index b5744ad4e33..00000000000 --- a/test/plistsinglefs_020_18156315275994242456.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_020.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_021_6147083095670645807.plist b/test/plistsinglefs_021_6147083095670645807.plist deleted file mode 100644 index c719987d4ed..00000000000 --- a/test/plistsinglefs_021_6147083095670645807.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_021.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_022_10471590852789339934.plist b/test/plistsinglefs_022_10471590852789339934.plist deleted file mode 100644 index 0b723420ed3..00000000000 --- a/test/plistsinglefs_022_10471590852789339934.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_022.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_023_16909102746175294901.plist b/test/plistsinglefs_023_16909102746175294901.plist deleted file mode 100644 index e5c955d0865..00000000000 --- a/test/plistsinglefs_023_16909102746175294901.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_023.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_024_14700595300420940836.plist b/test/plistsinglefs_024_14700595300420940836.plist deleted file mode 100644 index 57e39d76655..00000000000 --- a/test/plistsinglefs_024_14700595300420940836.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_024.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_025_8823860739843059579.plist b/test/plistsinglefs_025_8823860739843059579.plist deleted file mode 100644 index 2c6ecef41a5..00000000000 --- a/test/plistsinglefs_025_8823860739843059579.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_025.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_026_3512355274155447882.plist b/test/plistsinglefs_026_3512355274155447882.plist deleted file mode 100644 index fcfdb211d8f..00000000000 --- a/test/plistsinglefs_026_3512355274155447882.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_026.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_027_16165326099274897217.plist b/test/plistsinglefs_027_16165326099274897217.plist deleted file mode 100644 index 462a7b3f497..00000000000 --- a/test/plistsinglefs_027_16165326099274897217.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_027.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_028_4920099694817211664.plist b/test/plistsinglefs_028_4920099694817211664.plist deleted file mode 100644 index 7b4dd11a734..00000000000 --- a/test/plistsinglefs_028_4920099694817211664.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_028.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_029_5153938306950590183.plist b/test/plistsinglefs_029_5153938306950590183.plist deleted file mode 100644 index 2644e535d69..00000000000 --- a/test/plistsinglefs_029_5153938306950590183.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_029.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_030_7698910624868602385.plist b/test/plistsinglefs_030_7698910624868602385.plist deleted file mode 100644 index c439c9667ef..00000000000 --- a/test/plistsinglefs_030_7698910624868602385.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_030.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_031_4327788278843916122.plist b/test/plistsinglefs_031_4327788278843916122.plist deleted file mode 100644 index 1ff10f2fcfa..00000000000 --- a/test/plistsinglefs_031_4327788278843916122.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_031.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_032_15628799752837039243.plist b/test/plistsinglefs_032_15628799752837039243.plist deleted file mode 100644 index 4c72487084f..00000000000 --- a/test/plistsinglefs_032_15628799752837039243.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_032.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_033_12122075690950471092.plist b/test/plistsinglefs_033_12122075690950471092.plist deleted file mode 100644 index 5cfa06b53be..00000000000 --- a/test/plistsinglefs_033_12122075690950471092.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_033.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_034_11154912075418726021.plist b/test/plistsinglefs_034_11154912075418726021.plist deleted file mode 100644 index 4f377124edf..00000000000 --- a/test/plistsinglefs_034_11154912075418726021.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_034.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_035_11041859152714273838.plist b/test/plistsinglefs_035_11041859152714273838.plist deleted file mode 100644 index 98086860e51..00000000000 --- a/test/plistsinglefs_035_11041859152714273838.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_035.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_036_4005408066922675775.plist b/test/plistsinglefs_036_4005408066922675775.plist deleted file mode 100644 index b02698958f3..00000000000 --- a/test/plistsinglefs_036_4005408066922675775.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_036.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_037_9690181276564769640.plist b/test/plistsinglefs_037_9690181276564769640.plist deleted file mode 100644 index 512d69a2f51..00000000000 --- a/test/plistsinglefs_037_9690181276564769640.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_037.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_038_3416698981011843369.plist b/test/plistsinglefs_038_3416698981011843369.plist deleted file mode 100644 index 80b049e3aaf..00000000000 --- a/test/plistsinglefs_038_3416698981011843369.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_038.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_039_9101472190653937234.plist b/test/plistsinglefs_039_9101472190653937234.plist deleted file mode 100644 index 6502bba03d6..00000000000 --- a/test/plistsinglefs_039_9101472190653937234.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_039.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_040_16172580577588737498.plist b/test/plistsinglefs_040_16172580577588737498.plist deleted file mode 100644 index fc011b0fd02..00000000000 --- a/test/plistsinglefs_040_16172580577588737498.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_040.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_041_1096958849903872145.plist b/test/plistsinglefs_041_1096958849903872145.plist deleted file mode 100644 index 0bfad0f6418..00000000000 --- a/test/plistsinglefs_041_1096958849903872145.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_041.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_042_5520123915985740852.plist b/test/plistsinglefs_042_5520123915985740852.plist deleted file mode 100644 index 49a38774f31..00000000000 --- a/test/plistsinglefs_042_5520123915985740852.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_042.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_043_9026847977872309003.plist b/test/plistsinglefs_043_9026847977872309003.plist deleted file mode 100644 index caf5dd7a6fe..00000000000 --- a/test/plistsinglefs_043_9026847977872309003.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_043.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_044_4439907377749543598.plist b/test/plistsinglefs_044_4439907377749543598.plist deleted file mode 100644 index 89edfc5afb8..00000000000 --- a/test/plistsinglefs_044_4439907377749543598.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_044.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_045_4552960300453995781.plist b/test/plistsinglefs_045_4552960300453995781.plist deleted file mode 100644 index 56befa2698f..00000000000 --- a/test/plistsinglefs_045_4552960300453995781.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_045.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_046_3088229501600039400.plist b/test/plistsinglefs_046_3088229501600039400.plist deleted file mode 100644 index 519818b7df8..00000000000 --- a/test/plistsinglefs_046_3088229501600039400.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_046.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_047_15850200365667497151.plist b/test/plistsinglefs_047_15850200365667497151.plist deleted file mode 100644 index 513e0459383..00000000000 --- a/test/plistsinglefs_047_15850200365667497151.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_047.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_048_2499520415689206994.plist b/test/plistsinglefs_048_2499520415689206994.plist deleted file mode 100644 index 627a9121ed4..00000000000 --- a/test/plistsinglefs_048_2499520415689206994.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_048.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_049_15261491279756664745.plist b/test/plistsinglefs_049_15261491279756664745.plist deleted file mode 100644 index 6b0b53fca5c..00000000000 --- a/test/plistsinglefs_049_15261491279756664745.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_049.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_050_12941271169339841947.plist b/test/plistsinglefs_050_12941271169339841947.plist deleted file mode 100644 index c7edbf57dfa..00000000000 --- a/test/plistsinglefs_050_12941271169339841947.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_050.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_051_179018830295562180.plist b/test/plistsinglefs_051_179018830295562180.plist deleted file mode 100644 index 7ebd0982a5b..00000000000 --- a/test/plistsinglefs_051_179018830295562180.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_051.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_052_1888632858936230881.plist b/test/plistsinglefs_052_1888632858936230881.plist deleted file mode 100644 index 06785445dc4..00000000000 --- a/test/plistsinglefs_052_1888632858936230881.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_052.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_053_1448298344410931434.plist b/test/plistsinglefs_053_1448298344410931434.plist deleted file mode 100644 index 71c3fdfdb00..00000000000 --- a/test/plistsinglefs_053_1448298344410931434.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_053.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_054_10509376754954140495.plist b/test/plistsinglefs_054_10509376754954140495.plist deleted file mode 100644 index fad778a5f12..00000000000 --- a/test/plistsinglefs_054_10509376754954140495.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_054.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_055_3826981631781473208.plist b/test/plistsinglefs_055_3826981631781473208.plist deleted file mode 100644 index 0ac6f1c98df..00000000000 --- a/test/plistsinglefs_055_3826981631781473208.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_055.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_056_14599881111667244117.plist b/test/plistsinglefs_056_14599881111667244117.plist deleted file mode 100644 index e7d3b274469..00000000000 --- a/test/plistsinglefs_056_14599881111667244117.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_056.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_057_14396758456373512894.plist b/test/plistsinglefs_057_14396758456373512894.plist deleted file mode 100644 index f8eb984b967..00000000000 --- a/test/plistsinglefs_057_14396758456373512894.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_057.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_058_2364999852292302675.plist b/test/plistsinglefs_058_2364999852292302675.plist deleted file mode 100644 index f77b2198a1d..00000000000 --- a/test/plistsinglefs_058_2364999852292302675.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_058.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_059_14374232032615899324.plist b/test/plistsinglefs_059_14374232032615899324.plist deleted file mode 100644 index 2e007cce487..00000000000 --- a/test/plistsinglefs_059_14374232032615899324.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_059.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_060_6947539013353553244.plist b/test/plistsinglefs_060_6947539013353553244.plist deleted file mode 100644 index 71711029416..00000000000 --- a/test/plistsinglefs_060_6947539013353553244.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_060.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_061_13385050906739508211.plist b/test/plistsinglefs_061_13385050906739508211.plist deleted file mode 100644 index e8e06a60f27..00000000000 --- a/test/plistsinglefs_061_13385050906739508211.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_061.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_062_8076856241076547522.plist b/test/plistsinglefs_062_8076856241076547522.plist deleted file mode 100644 index 0356af519d5..00000000000 --- a/test/plistsinglefs_062_8076856241076547522.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_062.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_063_14514368134462502489.plist b/test/plistsinglefs_063_14514368134462502489.plist deleted file mode 100644 index a1d923e5fc0..00000000000 --- a/test/plistsinglefs_063_14514368134462502489.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_063.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_064_13631210589733188432.plist b/test/plistsinglefs_064_13631210589733188432.plist deleted file mode 100644 index 7750330dcfe..00000000000 --- a/test/plistsinglefs_064_13631210589733188432.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_064.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_065_1897296121059129383.plist b/test/plistsinglefs_065_1897296121059129383.plist deleted file mode 100644 index d0c563cd3ac..00000000000 --- a/test/plistsinglefs_065_1897296121059129383.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_065.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_066_5644961826690846070.plist b/test/plistsinglefs_066_5644961826690846070.plist deleted file mode 100644 index 1f55ac388f9..00000000000 --- a/test/plistsinglefs_066_5644961826690846070.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_066.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_067_18406967875130406573.plist b/test/plistsinglefs_067_18406967875130406573.plist deleted file mode 100644 index ffda9c65196..00000000000 --- a/test/plistsinglefs_067_18406967875130406573.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_067.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_068_11199069884742767716.plist b/test/plistsinglefs_068_11199069884742767716.plist deleted file mode 100644 index 05e14f9f0ff..00000000000 --- a/test/plistsinglefs_068_11199069884742767716.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_068.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_069_5322616799141708475.plist b/test/plistsinglefs_069_5322616799141708475.plist deleted file mode 100644 index c5c9009ee80..00000000000 --- a/test/plistsinglefs_069_5322616799141708475.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_069.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_070_10307150971210564661.plist b/test/plistsinglefs_070_10307150971210564661.plist deleted file mode 100644 index b774695ef82..00000000000 --- a/test/plistsinglefs_070_10307150971210564661.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_070.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_071_3869639077824609694.plist b/test/plistsinglefs_071_3869639077824609694.plist deleted file mode 100644 index a31f1d2b9e6..00000000000 --- a/test/plistsinglefs_071_3869639077824609694.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_071.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_072_17991875394415467183.plist b/test/plistsinglefs_072_17991875394415467183.plist deleted file mode 100644 index 0c547c9abbc..00000000000 --- a/test/plistsinglefs_072_17991875394415467183.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_072.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_073_11554363501029512216.plist b/test/plistsinglefs_073_11554363501029512216.plist deleted file mode 100644 index 1435e2501e6..00000000000 --- a/test/plistsinglefs_073_11554363501029512216.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_073.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_074_9563374324310166977.plist b/test/plistsinglefs_074_9563374324310166977.plist deleted file mode 100644 index 16e836ba500..00000000000 --- a/test/plistsinglefs_074_9563374324310166977.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_074.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_075_15357147572900269258.plist b/test/plistsinglefs_075_15357147572900269258.plist deleted file mode 100644 index 8a23f74ed48..00000000000 --- a/test/plistsinglefs_075_15357147572900269258.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_075.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_076_2221908964878329339.plist b/test/plistsinglefs_076_2221908964878329339.plist deleted file mode 100644 index 6b34ce2a141..00000000000 --- a/test/plistsinglefs_076_2221908964878329339.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_076.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_077_8098643525456210596.plist b/test/plistsinglefs_077_8098643525456210596.plist deleted file mode 100644 index e1d217601ad..00000000000 --- a/test/plistsinglefs_077_8098643525456210596.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_077.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_078_2849303450439809261.plist b/test/plistsinglefs_078_2849303450439809261.plist deleted file mode 100644 index 37e9be9bad5..00000000000 --- a/test/plistsinglefs_078_2849303450439809261.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_078.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_079_2544535467404288950.plist b/test/plistsinglefs_079_2544535467404288950.plist deleted file mode 100644 index 759272364ff..00000000000 --- a/test/plistsinglefs_079_2544535467404288950.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_079.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_080_15714431376569431070.plist b/test/plistsinglefs_080_15714431376569431070.plist deleted file mode 100644 index bd02d3f9f45..00000000000 --- a/test/plistsinglefs_080_15714431376569431070.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_080.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_081_3705199196245834421.plist b/test/plistsinglefs_081_3705199196245834421.plist deleted file mode 100644 index abbcb46c489..00000000000 --- a/test/plistsinglefs_081_3705199196245834421.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_081.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_082_4952411726064781976.plist b/test/plistsinglefs_082_4952411726064781976.plist deleted file mode 100644 index 085d6a7e655..00000000000 --- a/test/plistsinglefs_082_4952411726064781976.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_082.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_083_11389923619450736943.plist b/test/plistsinglefs_083_11389923619450736943.plist deleted file mode 100644 index dbaa1e52483..00000000000 --- a/test/plistsinglefs_083_11389923619450736943.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_083.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_084_8755195797935539018.plist b/test/plistsinglefs_084_8755195797935539018.plist deleted file mode 100644 index d5ec0c5f9cb..00000000000 --- a/test/plistsinglefs_084_8755195797935539018.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_084.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_085_2961422549345436737.plist b/test/plistsinglefs_085_2961422549345436737.plist deleted file mode 100644 index 3dc2f754ba8..00000000000 --- a/test/plistsinglefs_085_2961422549345436737.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_085.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_086_1496691750491480356.plist b/test/plistsinglefs_086_1496691750491480356.plist deleted file mode 100644 index 79e21df1143..00000000000 --- a/test/plistsinglefs_086_1496691750491480356.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_086.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_087_14066701263623150715.plist b/test/plistsinglefs_087_14066701263623150715.plist deleted file mode 100644 index 04478f2c45c..00000000000 --- a/test/plistsinglefs_087_14066701263623150715.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_087.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_088_14389327766149110326.plist b/test/plistsinglefs_088_14389327766149110326.plist deleted file mode 100644 index 0393934864e..00000000000 --- a/test/plistsinglefs_088_14389327766149110326.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_088.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_089_14694095749184630637.plist b/test/plistsinglefs_089_14694095749184630637.plist deleted file mode 100644 index 0110cb39905..00000000000 --- a/test/plistsinglefs_089_14694095749184630637.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_089.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_090_9248248590702766911.plist b/test/plistsinglefs_090_9248248590702766911.plist deleted file mode 100644 index fae9c1f3d16..00000000000 --- a/test/plistsinglefs_090_9248248590702766911.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_090.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_091_14933021800344860776.plist b/test/plistsinglefs_091_14933021800344860776.plist deleted file mode 100644 index 872a9a1cd00..00000000000 --- a/test/plistsinglefs_091_14933021800344860776.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_091.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_092_16397752599198817157.plist b/test/plistsinglefs_092_16397752599198817157.plist deleted file mode 100644 index ce1f4122215..00000000000 --- a/test/plistsinglefs_092_16397752599198817157.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_092.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_093_16284699676494364974.plist b/test/plistsinglefs_093_16284699676494364974.plist deleted file mode 100644 index 2cf6771364e..00000000000 --- a/test/plistsinglefs_093_16284699676494364974.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_093.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_094_2424896202907578763.plist b/test/plistsinglefs_094_2424896202907578763.plist deleted file mode 100644 index 7bdb60ef977..00000000000 --- a/test/plistsinglefs_094_2424896202907578763.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_094.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_095_17364916214730562228.plist b/test/plistsinglefs_095_17364916214730562228.plist deleted file mode 100644 index 1fd5b367041..00000000000 --- a/test/plistsinglefs_095_17364916214730562228.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_095.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_096_12941751148648693521.plist b/test/plistsinglefs_096_12941751148648693521.plist deleted file mode 100644 index 384e12a83db..00000000000 --- a/test/plistsinglefs_096_12941751148648693521.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_096.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_097_9570628802624007258.plist b/test/plistsinglefs_097_9570628802624007258.plist deleted file mode 100644 index d402b49fae6..00000000000 --- a/test/plistsinglefs_097_9570628802624007258.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_097.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_098_4887471389760824759.plist b/test/plistsinglefs_098_4887471389760824759.plist deleted file mode 100644 index 81ed3ae0e2f..00000000000 --- a/test/plistsinglefs_098_4887471389760824759.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_098.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_099_10733489993499058720.plist b/test/plistsinglefs_099_10733489993499058720.plist deleted file mode 100644 index 4c923ea4dd6..00000000000 --- a/test/plistsinglefs_099_10733489993499058720.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_099.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_100_9929666059625854277.plist b/test/plistsinglefs_100_9929666059625854277.plist deleted file mode 100644 index 1d6f0e92d88..00000000000 --- a/test/plistsinglefs_100_9929666059625854277.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_100.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_2_5071803044175591832.plist b/test/plistsinglefs_2_5071803044175591832.plist deleted file mode 100644 index 8052af488e3..00000000000 --- a/test/plistsinglefs_2_5071803044175591832.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_2.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistsinglefs_4_8874587116046348874.plist b/test/plistsinglefs_4_8874587116046348874.plist deleted file mode 100644 index f74115e31bc..00000000000 --- a/test/plistsinglefs_4_8874587116046348874.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - singlefs_4.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_100_5268126128994548098.plist b/test/plistthread_100_5268126128994548098.plist deleted file mode 100644 index 7010202f2f5..00000000000 --- a/test/plistthread_100_5268126128994548098.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_100.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_10_7575256409926221148.plist b/test/plistthread_10_7575256409926221148.plist deleted file mode 100644 index fa64c5db8ea..00000000000 --- a/test/plistthread_10_7575256409926221148.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_10.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_11_14012768303312176115.plist b/test/plistthread_11_14012768303312176115.plist deleted file mode 100644 index eca109207b0..00000000000 --- a/test/plistthread_11_14012768303312176115.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_11.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_12_8704573637649215426.plist b/test/plistthread_12_8704573637649215426.plist deleted file mode 100644 index 1a822528238..00000000000 --- a/test/plistthread_12_8704573637649215426.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_12.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_13_15142085531035170393.plist b/test/plistthread_13_15142085531035170393.plist deleted file mode 100644 index dfc9dfbe8f9..00000000000 --- a/test/plistthread_13_15142085531035170393.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_13.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_14_14258927986305856336.plist b/test/plistthread_14_14258927986305856336.plist deleted file mode 100644 index f8c78e780db..00000000000 --- a/test/plistthread_14_14258927986305856336.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_14.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_15_2525013517631797287.plist b/test/plistthread_15_2525013517631797287.plist deleted file mode 100644 index 2d4b9c6ce08..00000000000 --- a/test/plistthread_15_2525013517631797287.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_15.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_16_6272679223263513974.plist b/test/plistthread_16_6272679223263513974.plist deleted file mode 100644 index 06eb8837bbd..00000000000 --- a/test/plistthread_16_6272679223263513974.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_16.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_17_587941197993522861.plist b/test/plistthread_17_587941197993522861.plist deleted file mode 100644 index 4dafa2d58e7..00000000000 --- a/test/plistthread_17_587941197993522861.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_17.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_18_11826787281315435620.plist b/test/plistthread_18_11826787281315435620.plist deleted file mode 100644 index c26e59c8e52..00000000000 --- a/test/plistthread_18_11826787281315435620.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_18.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_19_5950334195714376379.plist b/test/plistthread_19_5950334195714376379.plist deleted file mode 100644 index eabc8b6ef3a..00000000000 --- a/test/plistthread_19_5950334195714376379.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_19.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_1_14399305487663705930.plist b/test/plistthread_1_14399305487663705930.plist deleted file mode 100644 index 6384d828f53..00000000000 --- a/test/plistthread_1_14399305487663705930.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_1.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_20_13568988565912509851.plist b/test/plistthread_20_13568988565912509851.plist deleted file mode 100644 index 57eb1b68726..00000000000 --- a/test/plistthread_20_13568988565912509851.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_20.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_21_806736226868230084.plist b/test/plistthread_21_806736226868230084.plist deleted file mode 100644 index fddc00b210e..00000000000 --- a/test/plistthread_21_806736226868230084.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_21.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_22_2516350255508898785.plist b/test/plistthread_22_2516350255508898785.plist deleted file mode 100644 index c80a15d2cc7..00000000000 --- a/test/plistthread_22_2516350255508898785.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_22.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_23_2076015740983599338.plist b/test/plistthread_23_2076015740983599338.plist deleted file mode 100644 index db4f0b8cb3c..00000000000 --- a/test/plistthread_23_2076015740983599338.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_23.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_24_11137094151526808399.plist b/test/plistthread_24_11137094151526808399.plist deleted file mode 100644 index f6a056415bc..00000000000 --- a/test/plistthread_24_11137094151526808399.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_24.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_25_4454699028354141112.plist b/test/plistthread_25_4454699028354141112.plist deleted file mode 100644 index a0bb8588aae..00000000000 --- a/test/plistthread_25_4454699028354141112.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_25.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_26_15227598508239912021.plist b/test/plistthread_26_15227598508239912021.plist deleted file mode 100644 index b60fb3c5a6b..00000000000 --- a/test/plistthread_26_15227598508239912021.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_26.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_27_15024475852946180798.plist b/test/plistthread_27_15024475852946180798.plist deleted file mode 100644 index d61ca05629d..00000000000 --- a/test/plistthread_27_15024475852946180798.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_27.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_28_2992717248864970579.plist b/test/plistthread_28_2992717248864970579.plist deleted file mode 100644 index 35ec39b25f9..00000000000 --- a/test/plistthread_28_2992717248864970579.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_28.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_29_15001949429188567228.plist b/test/plistthread_29_15001949429188567228.plist deleted file mode 100644 index 2afe8b5f3d6..00000000000 --- a/test/plistthread_29_15001949429188567228.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_29.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_2_1264066879641766011.plist b/test/plistthread_2_1264066879641766011.plist deleted file mode 100644 index e8374a5f8f9..00000000000 --- a/test/plistthread_2_1264066879641766011.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_2.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_30_16800297974161405402.plist b/test/plistthread_30_16800297974161405402.plist deleted file mode 100644 index f5810a71cab..00000000000 --- a/test/plistthread_30_16800297974161405402.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_30.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_31_1724676246476540049.plist b/test/plistthread_31_1724676246476540049.plist deleted file mode 100644 index cc22c78576f..00000000000 --- a/test/plistthread_31_1724676246476540049.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_31.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_32_6147841312558408756.plist b/test/plistthread_32_6147841312558408756.plist deleted file mode 100644 index 9ccdfdaccd0..00000000000 --- a/test/plistthread_32_6147841312558408756.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_32.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_33_9654565374444976907.plist b/test/plistthread_33_9654565374444976907.plist deleted file mode 100644 index c3cfd0a14cc..00000000000 --- a/test/plistthread_33_9654565374444976907.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_33.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_34_5067624774322211502.plist b/test/plistthread_34_5067624774322211502.plist deleted file mode 100644 index cce00c994ea..00000000000 --- a/test/plistthread_34_5067624774322211502.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_34.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_35_5180677697026663685.plist b/test/plistthread_35_5180677697026663685.plist deleted file mode 100644 index 4d7d9bd41fa..00000000000 --- a/test/plistthread_35_5180677697026663685.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_35.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_36_3715946898172707304.plist b/test/plistthread_36_3715946898172707304.plist deleted file mode 100644 index 10a78ad05f3..00000000000 --- a/test/plistthread_36_3715946898172707304.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_36.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_37_16477917762240165055.plist b/test/plistthread_37_16477917762240165055.plist deleted file mode 100644 index 67057377784..00000000000 --- a/test/plistthread_37_16477917762240165055.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_37.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_38_3127237812261874898.plist b/test/plistthread_38_3127237812261874898.plist deleted file mode 100644 index bf8b6df6ad7..00000000000 --- a/test/plistthread_38_3127237812261874898.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_38.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_39_15889208676329332649.plist b/test/plistthread_39_15889208676329332649.plist deleted file mode 100644 index 26519be2aa8..00000000000 --- a/test/plistthread_39_15889208676329332649.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_39.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_3_7140801440219647268.plist b/test/plistthread_3_7140801440219647268.plist deleted file mode 100644 index 018b63528a3..00000000000 --- a/test/plistthread_3_7140801440219647268.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_3.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_40_8326628021441270289.plist b/test/plistthread_40_8326628021441270289.plist deleted file mode 100644 index 7e0fe63bb24..00000000000 --- a/test/plistthread_40_8326628021441270289.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_40.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_41_4955505675416584026.plist b/test/plistthread_41_4955505675416584026.plist deleted file mode 100644 index d91ccae1355..00000000000 --- a/test/plistthread_41_4955505675416584026.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_41.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_42_16256517149409707147.plist b/test/plistthread_42_16256517149409707147.plist deleted file mode 100644 index c5d1bc5aab4..00000000000 --- a/test/plistthread_42_16256517149409707147.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_42.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_43_12749793087523138996.plist b/test/plistthread_43_12749793087523138996.plist deleted file mode 100644 index a7bf5a39977..00000000000 --- a/test/plistthread_43_12749793087523138996.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_43.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_44_11782629471991393925.plist b/test/plistthread_44_11782629471991393925.plist deleted file mode 100644 index b0e54ee491a..00000000000 --- a/test/plistthread_44_11782629471991393925.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_44.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_45_11669576549286941742.plist b/test/plistthread_45_11669576549286941742.plist deleted file mode 100644 index 5058dae1cae..00000000000 --- a/test/plistthread_45_11669576549286941742.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_45.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_46_4633125463495343679.plist b/test/plistthread_46_4633125463495343679.plist deleted file mode 100644 index 40e8ce89823..00000000000 --- a/test/plistthread_46_4633125463495343679.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_46.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_47_10317898673137437544.plist b/test/plistthread_47_10317898673137437544.plist deleted file mode 100644 index ac8d72ee9b1..00000000000 --- a/test/plistthread_47_10317898673137437544.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_47.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_48_4044416377584511273.plist b/test/plistthread_48_4044416377584511273.plist deleted file mode 100644 index 467778cd2bf..00000000000 --- a/test/plistthread_48_4044416377584511273.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_48.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_49_9729189587226605138.plist b/test/plistthread_49_9729189587226605138.plist deleted file mode 100644 index 65c84e6518c..00000000000 --- a/test/plistthread_49_9729189587226605138.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_49.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_4_9349308885974001333.plist b/test/plistthread_4_9349308885974001333.plist deleted file mode 100644 index b0002ef6567..00000000000 --- a/test/plistthread_4_9349308885974001333.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_4.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_50_337288598857358744.plist b/test/plistthread_50_337288598857358744.plist deleted file mode 100644 index 58dcf300334..00000000000 --- a/test/plistthread_50_337288598857358744.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_50.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_51_6774800492243313711.plist b/test/plistthread_51_6774800492243313711.plist deleted file mode 100644 index cac2ff307c9..00000000000 --- a/test/plistthread_51_6774800492243313711.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_51.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_52_11099308249362007838.plist b/test/plistthread_52_11099308249362007838.plist deleted file mode 100644 index 3080343df1c..00000000000 --- a/test/plistthread_52_11099308249362007838.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_52.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_53_17536820142747962805.plist b/test/plistthread_53_17536820142747962805.plist deleted file mode 100644 index 8096f14d532..00000000000 --- a/test/plistthread_53_17536820142747962805.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_53.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_54_15328312696993608740.plist b/test/plistthread_54_15328312696993608740.plist deleted file mode 100644 index 460a01fd900..00000000000 --- a/test/plistthread_54_15328312696993608740.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_54.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_55_9451578136415727483.plist b/test/plistthread_55_9451578136415727483.plist deleted file mode 100644 index e2f361ec197..00000000000 --- a/test/plistthread_55_9451578136415727483.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_55.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_56_4140072670728115786.plist b/test/plistthread_56_4140072670728115786.plist deleted file mode 100644 index 604b571ec4d..00000000000 --- a/test/plistthread_56_4140072670728115786.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_56.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_57_16793043495847565121.plist b/test/plistthread_57_16793043495847565121.plist deleted file mode 100644 index fa40610725f..00000000000 --- a/test/plistthread_57_16793043495847565121.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_57.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_58_5547817091389879568.plist b/test/plistthread_58_5547817091389879568.plist deleted file mode 100644 index ac9958a608d..00000000000 --- a/test/plistthread_58_5547817091389879568.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_58.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_59_5781655703523258087.plist b/test/plistthread_59_5781655703523258087.plist deleted file mode 100644 index 56594706ace..00000000000 --- a/test/plistthread_59_5781655703523258087.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_59.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_5_2911796992588046366.plist b/test/plistthread_5_2911796992588046366.plist deleted file mode 100644 index 3dd62442a6e..00000000000 --- a/test/plistthread_5_2911796992588046366.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_5.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_60_10991428992038092119.plist b/test/plistthread_60_10991428992038092119.plist deleted file mode 100644 index a38664dd572..00000000000 --- a/test/plistthread_60_10991428992038092119.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_60.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_61_16645486244840538688.plist b/test/plistthread_61_16645486244840538688.plist deleted file mode 100644 index 696a10e3451..00000000000 --- a/test/plistthread_61_16645486244840538688.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_61.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_62_5905287288027592029.plist b/test/plistthread_62_5905287288027592029.plist deleted file mode 100644 index 8efd5330a5a..00000000000 --- a/test/plistthread_62_5905287288027592029.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_62.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_63_17914484283979085926.plist b/test/plistthread_63_17914484283979085926.plist deleted file mode 100644 index 641fa7c9c3c..00000000000 --- a/test/plistthread_63_17914484283979085926.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_63.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_64_4277322933795631651.plist b/test/plistthread_64_4277322933795631651.plist deleted file mode 100644 index e35c10ddc98..00000000000 --- a/test/plistthread_64_4277322933795631651.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_64.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_65_9961814668460903500.plist b/test/plistthread_65_9961814668460903500.plist deleted file mode 100644 index d1f5bb54a61..00000000000 --- a/test/plistthread_65_9961814668460903500.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_65.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_66_14571535756133414473.plist b/test/plistthread_66_14571535756133414473.plist deleted file mode 100644 index 9a8fd1e8b6c..00000000000 --- a/test/plistthread_66_14571535756133414473.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_66.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_67_14458764308405784306.plist b/test/plistthread_67_14458764308405784306.plist deleted file mode 100644 index fa7ff3d65ff..00000000000 --- a/test/plistthread_67_14458764308405784306.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_67.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_68_15160244842044246879.plist b/test/plistthread_68_15160244842044246879.plist deleted file mode 100644 index 866187d3290..00000000000 --- a/test/plistthread_68_15160244842044246879.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_68.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_69_2590235328912576520.plist b/test/plistthread_69_2590235328912576520.plist deleted file mode 100644 index 533ad0bd78b..00000000000 --- a/test/plistthread_69_2590235328912576520.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_69.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_6_17034033309178903855.plist b/test/plistthread_6_17034033309178903855.plist deleted file mode 100644 index 5a939c3dbbe..00000000000 --- a/test/plistthread_6_17034033309178903855.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_6.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_70_2046541294716826070.plist b/test/plistthread_70_2046541294716826070.plist deleted file mode 100644 index d2d0c4e6464..00000000000 --- a/test/plistthread_70_2046541294716826070.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_70.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_71_14616585992220599181.plist b/test/plistthread_71_14616585992220599181.plist deleted file mode 100644 index 8586513bd55..00000000000 --- a/test/plistthread_71_14616585992220599181.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_71.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_72_9840547231846559024.plist b/test/plistthread_72_9840547231846559024.plist deleted file mode 100644 index 5fb872f26b1..00000000000 --- a/test/plistthread_72_9840547231846559024.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_72.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_73_16308775082072161287.plist b/test/plistthread_73_16308775082072161287.plist deleted file mode 100644 index d2b1c2f180b..00000000000 --- a/test/plistthread_73_16308775082072161287.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_73.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_74_10712824947194751266.plist b/test/plistthread_74_10712824947194751266.plist deleted file mode 100644 index 1323a5f460a..00000000000 --- a/test/plistthread_74_10712824947194751266.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_74.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_75_10915947602488482489.plist b/test/plistthread_75_10915947602488482489.plist deleted file mode 100644 index d0e74dacd18..00000000000 --- a/test/plistthread_75_10915947602488482489.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_75.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_76_3157157130443745852.plist b/test/plistthread_76_3157157130443745852.plist deleted file mode 100644 index a074fa99388..00000000000 --- a/test/plistthread_76_3157157130443745852.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_76.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_77_9594669023829700819.plist b/test/plistthread_77_9594669023829700819.plist deleted file mode 100644 index 20cdd8ffb93..00000000000 --- a/test/plistthread_77_9594669023829700819.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_77.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_78_3179683554201359422.plist b/test/plistthread_78_3179683554201359422.plist deleted file mode 100644 index 1500df20993..00000000000 --- a/test/plistthread_78_3179683554201359422.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_78.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_79_3382806209495090645.plist b/test/plistthread_79_3382806209495090645.plist deleted file mode 100644 index f02455a4e92..00000000000 --- a/test/plistthread_79_3382806209495090645.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_79.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_7_10596521415792948888.plist b/test/plistthread_7_10596521415792948888.plist deleted file mode 100644 index 66b1a310fe4..00000000000 --- a/test/plistthread_7_10596521415792948888.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_7.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_80_11148127811807683165.plist b/test/plistthread_80_11148127811807683165.plist deleted file mode 100644 index 5bccf7ac846..00000000000 --- a/test/plistthread_80_11148127811807683165.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_80.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_81_4710580734049625446.plist b/test/plistthread_81_4710580734049625446.plist deleted file mode 100644 index 77b560eed1d..00000000000 --- a/test/plistthread_81_4710580734049625446.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_81.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_82_16234269515818183255.plist b/test/plistthread_82_16234269515818183255.plist deleted file mode 100644 index a4af5235d1b..00000000000 --- a/test/plistthread_82_16234269515818183255.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_82.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_83_3441582694911078208.plist b/test/plistthread_83_3441582694911078208.plist deleted file mode 100644 index 6bd1f3efa0a..00000000000 --- a/test/plistthread_83_3441582694911078208.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_83.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_84_1367632206203953993.plist b/test/plistthread_84_1367632206203953993.plist deleted file mode 100644 index fe1b04e071f..00000000000 --- a/test/plistthread_84_1367632206203953993.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_84.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_85_1254860758476323826.plist b/test/plistthread_85_1254860758476323826.plist deleted file mode 100644 index b59cbd14b64..00000000000 --- a/test/plistthread_85_1254860758476323826.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_85.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_86_9520163457575722787.plist b/test/plistthread_86_9520163457575722787.plist deleted file mode 100644 index 0d11fed93d0..00000000000 --- a/test/plistthread_86_9520163457575722787.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_86.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_87_15204655192240994636.plist b/test/plistthread_87_15204655192240994636.plist deleted file mode 100644 index 286f81b8a7a..00000000000 --- a/test/plistthread_87_15204655192240994636.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_87.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_88_3308300643241112613.plist b/test/plistthread_88_3308300643241112613.plist deleted file mode 100644 index 3b5186e11c3..00000000000 --- a/test/plistthread_88_3308300643241112613.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_88.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_89_8993073852883206478.plist b/test/plistthread_89_8993073852883206478.plist deleted file mode 100644 index bee377c1c04..00000000000 --- a/test/plistthread_89_8993073852883206478.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_89.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_8_16690207453054783769.plist b/test/plistthread_8_16690207453054783769.plist deleted file mode 100644 index 1c8d495907e..00000000000 --- a/test/plistthread_8_16690207453054783769.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_8.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_90_12651528525613051460.plist b/test/plistthread_90_12651528525613051460.plist deleted file mode 100644 index b96de1d439d..00000000000 --- a/test/plistthread_90_12651528525613051460.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_90.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_91_6967036790947779611.plist b/test/plistthread_91_6967036790947779611.plist deleted file mode 100644 index 462439540ec..00000000000 --- a/test/plistthread_91_6967036790947779611.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_91.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_92_13920808039728420714.plist b/test/plistthread_92_13920808039728420714.plist deleted file mode 100644 index edfe6aed83d..00000000000 --- a/test/plistthread_92_13920808039728420714.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_92.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_93_14361142554253720161.plist b/test/plistthread_93_14361142554253720161.plist deleted file mode 100644 index f33802f4e0e..00000000000 --- a/test/plistthread_93_14361142554253720161.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_93.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_94_16299491327098962488.plist b/test/plistthread_94_16299491327098962488.plist deleted file mode 100644 index 5c327fbffec..00000000000 --- a/test/plistthread_94_16299491327098962488.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_94.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_95_4535142376562078159.plist b/test/plistthread_95_4535142376562078159.plist deleted file mode 100644 index 93386fe5fa7..00000000000 --- a/test/plistthread_95_4535142376562078159.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_95.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_96_8422524077981450558.plist b/test/plistthread_96_8422524077981450558.plist deleted file mode 100644 index b4483562b88..00000000000 --- a/test/plistthread_96_8422524077981450558.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_96.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_97_8625646733275181781.plist b/test/plistthread_97_8625646733275181781.plist deleted file mode 100644 index 0edaf23f812..00000000000 --- a/test/plistthread_97_8625646733275181781.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_97.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_98_8399997654223836988.plist b/test/plistthread_98_8399997654223836988.plist deleted file mode 100644 index aeb89934183..00000000000 --- a/test/plistthread_98_8399997654223836988.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_98.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_99_14837509547609791955.plist b/test/plistthread_99_14837509547609791955.plist deleted file mode 100644 index e3a725f7135..00000000000 --- a/test/plistthread_99_14837509547609791955.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_99.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file diff --git a/test/plistthread_9_10252977034645650818.plist b/test/plistthread_9_10252977034645650818.plist deleted file mode 100644 index 554f437b829..00000000000 --- a/test/plistthread_9_10252977034645650818.plist +++ /dev/null @@ -1,64 +0,0 @@ - - - - - clang_version -cppcheck version 2.11 dev - files - - thread_9.cpp - - diagnostics - - - path - - - kindevent - location - - line4 - col3 - file0 - - ranges - - - - line4 - col3 - file0 - - - line4 - col3 - file0 - - - - depth0 - extended_message - Memory leak: a - message - Memory leak: a - - - descriptionMemory leak: a - categoryerror - typeMemory leak: a - check_namememleak - - issue_hash_content_of_line_in_context0 - issue_context_kind - issue_context - issue_hash_function_offset - location - - line4 - col3 - file0 - - - - - \ No newline at end of file From fa2f2ef37e337e37d9277b2742762f603e4896d0 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 13:10:04 +0200 Subject: [PATCH 08/15] Fix readability-else-after-return --- lib/checkuninitvar.cpp | 62 ++++++++++++++++++++---------------------- lib/programmemory.cpp | 45 ++++++++++++++---------------- lib/token.cpp | 1 + lib/valueflow.cpp | 60 ++++++++++++++++++++-------------------- 4 files changed, 83 insertions(+), 85 deletions(-) diff --git a/lib/checkuninitvar.cpp b/lib/checkuninitvar.cpp index e4e348fbf3b..6dbc1c037df 100644 --- a/lib/checkuninitvar.cpp +++ b/lib/checkuninitvar.cpp @@ -457,10 +457,9 @@ bool CheckUninitVar::checkScopeForVariable(const Token *tok, const Variable& var const std::map::const_iterator it = variableValue.find(condVarTok->varId()); if (it != variableValue.cend() && it->second != 0) return true; // this scope is not fully analysed => return true - else { - condVarId = condVarTok->varId(); - condVarValue = !VariableValue(0); - } + + condVarId = condVarTok->varId(); + condVarValue = !VariableValue(0); } else if (Token::Match(tok->next()->astOperand2(), "==|!=")) { const Token *condition = tok->next()->astOperand2(); const Token *lhs = condition->astOperand1(); @@ -721,7 +720,7 @@ bool CheckUninitVar::checkScopeForVariable(const Token *tok, const Variable& var return true; } - else if (isSizeOfEtc(tok)) + if (isSizeOfEtc(tok)) tok = tok->linkAt(1); else if (tok->str() == "?") { @@ -802,30 +801,28 @@ bool CheckUninitVar::checkScopeForVariable(const Token *tok, const Variable& var return true; } - else { - const Token *parent = tok; - while (parent->astParent() && ((astIsLHS(parent) && parent->astParent()->str() == "[") || parent->astParent()->isUnaryOp("*"))) { - parent = parent->astParent(); - if (parent->str() == "[") { - if (const Token *errorToken = checkExpr(parent->astOperand2(), var, *alloc, number_of_if==0)) { - if (!suppressErrors) - uninitvarError(errorToken, errorToken->expressionString(), *alloc); - return true; - } - } - } - if (Token::simpleMatch(parent->astParent(), "=") && astIsLHS(parent)) { - const Token *eq = parent->astParent(); - if (const Token *errorToken = checkExpr(eq->astOperand2(), var, *alloc, number_of_if==0)) { + const Token *parent = tok; + while (parent->astParent() && ((astIsLHS(parent) && parent->astParent()->str() == "[") || parent->astParent()->isUnaryOp("*"))) { + parent = parent->astParent(); + if (parent->str() == "[") { + if (const Token *errorToken = checkExpr(parent->astOperand2(), var, *alloc, number_of_if==0)) { if (!suppressErrors) uninitvarError(errorToken, errorToken->expressionString(), *alloc); return true; } } - - // assume that variable is assigned - return true; } + if (Token::simpleMatch(parent->astParent(), "=") && astIsLHS(parent)) { + const Token *eq = parent->astParent(); + if (const Token *errorToken = checkExpr(eq->astOperand2(), var, *alloc, number_of_if==0)) { + if (!suppressErrors) + uninitvarError(errorToken, errorToken->expressionString(), *alloc); + return true; + } + } + + // assume that variable is assigned + return true; } } } @@ -856,7 +853,7 @@ const Token* CheckUninitVar::checkExpr(const Token* tok, const Variable& var, co const Token *errorToken = isVariableUsage(tok, var.isPointer(), alloc); if (errorToken) return errorToken; - else if (bailout) + if (bailout) *bailout = true; } return nullptr; @@ -1401,11 +1398,11 @@ bool CheckUninitVar::isMemberVariableAssignment(const Token *tok, const std::str if (Token::Match(tok, "%name% . %name%") && tok->strAt(2) == membervar) { if (Token::Match(tok->tokAt(3), "[=.[]")) return true; - else if (Token::Match(tok->tokAt(-2), "[(,=] &")) + if (Token::Match(tok->tokAt(-2), "[(,=] &")) return true; - else if (isLikelyStreamRead(mTokenizer->isCPP(), tok->previous())) + if (isLikelyStreamRead(mTokenizer->isCPP(), tok->previous())) return true; - else if ((tok->previous() && tok->previous()->isConstOp()) || Token::Match(tok->previous(), "[|=")) + if ((tok->previous() && tok->previous()->isConstOp()) || Token::Match(tok->previous(), "[|=")) ; // member variable usage else if (tok->tokAt(3)->isConstOp()) ; // member variable usage @@ -1445,7 +1442,7 @@ bool CheckUninitVar::isMemberVariableAssignment(const Token *tok, const std::str const Library::ArgumentChecks::Direction argDirection = mSettings->library.getArgDirection(ftok, 1 + argumentNumber); if (argDirection == Library::ArgumentChecks::Direction::DIR_IN) return false; - else if (argDirection == Library::ArgumentChecks::Direction::DIR_OUT) + if (argDirection == Library::ArgumentChecks::Direction::DIR_OUT) return true; } @@ -1480,14 +1477,15 @@ bool CheckUninitVar::isMemberVariableUsage(const Token *tok, bool isPointer, All if (Token::Match(tok, "%name% . %name%") && tok->strAt(2) == membervar && !(tok->tokAt(-2)->variable() && tok->tokAt(-2)->variable()->isReference())) { const Token *parent = tok->next()->astParent(); return !parent || !parent->isUnaryOp("&"); - } else if (!isPointer && !Token::simpleMatch(tok->astParent(), ".") && Token::Match(tok->previous(), "[(,] %name% [,)]") && isVariableUsage(tok, isPointer, alloc)) + } + if (!isPointer && !Token::simpleMatch(tok->astParent(), ".") && Token::Match(tok->previous(), "[(,] %name% [,)]") && isVariableUsage(tok, isPointer, alloc)) return true; - else if (!isPointer && Token::Match(tok->previous(), "= %name% ;")) + if (!isPointer && Token::Match(tok->previous(), "= %name% ;")) return true; // = *(&var); - else if (!isPointer && + if (!isPointer && Token::simpleMatch(tok->astParent(),"&") && Token::simpleMatch(tok->astParent()->astParent(),"*") && Token::Match(tok->astParent()->astParent()->astParent(), "= * (| &") && @@ -1495,7 +1493,7 @@ bool CheckUninitVar::isMemberVariableUsage(const Token *tok, bool isPointer, All return true; // TODO: this used to be experimental - enable or remove see #5586 - else if ((false) && // NOLINT(readability-simplify-boolean-expr) + if ((false) && // NOLINT(readability-simplify-boolean-expr) !isPointer && Token::Match(tok->tokAt(-2), "[(,] & %name% [,)]") && isVariableUsage(tok, isPointer, alloc)) diff --git a/lib/programmemory.cpp b/lib/programmemory.cpp index e256879049e..45577059ecd 100644 --- a/lib/programmemory.cpp +++ b/lib/programmemory.cpp @@ -1193,7 +1193,7 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const return unknown; if (v.isImpossible() && v.intvalue == 0) return ValueFlow::Value{0}; - else if (!v.isImpossible()) + if (!v.isImpossible()) return ValueFlow::Value{v.intvalue == 0}; } } else if (expr->isAssignmentOp() && expr->astOperand1() && expr->astOperand2() && expr->astOperand1()->exprId() > 0) { @@ -1212,10 +1212,9 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const else return unknown; return lhs; - } else { - pm.setValue(expr->astOperand1(), rhs); - return rhs; } + pm.setValue(expr->astOperand1(), rhs); + return rhs; } else if (expr->str() == "&&" && expr->astOperand1() && expr->astOperand2()) { ValueFlow::Value lhs = execute(expr->astOperand1(), pm); if (!lhs.isIntValue()) @@ -1273,7 +1272,7 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const const MathLib::bigint index = rhs.intvalue; if (index >= 0 && index < strValue.size()) return ValueFlow::Value{strValue[index]}; - else if (index == strValue.size()) + if (index == strValue.size()) return ValueFlow::Value{}; } else if (Token::Match(expr, "%cop%") && expr->astOperand1() && expr->astOperand2()) { ValueFlow::Value lhs = execute(expr->astOperand1(), pm); @@ -1324,15 +1323,14 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const const Token* child = expr->astOperand2(); if (isFalse(cond)) return execute(child->astOperand2(), pm); - else if (isTrue(cond)) + if (isTrue(cond)) return execute(child->astOperand1(), pm); - else - return unknown; + + return unknown; } else if (expr->str() == "(" && expr->isCast()) { if (Token::simpleMatch(expr->previous(), ">") && expr->previous()->link()) return execute(expr->astOperand2(), pm); - else - return execute(expr->astOperand1(), pm); + return execute(expr->astOperand1(), pm); } if (expr->exprId() > 0 && pm.hasValue(expr->exprId())) { ValueFlow::Value result = pm.at(expr->exprId()); @@ -1354,20 +1352,18 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const return execute(tok, pm, settings); }); BuiltinLibraryFunction lf = getBuiltinLibraryFunction(ftok->str()); - if (lf) { + if (lf) return lf(args); - } else { - const std::string& returnValue = settings->library.returnValue(ftok); - if (!returnValue.empty()) { - std::unordered_map arg_map; - int argn = 0; - for (const ValueFlow::Value& result : args) { - if (!result.isUninitValue()) - arg_map[argn] = result; - argn++; - } - return evaluateLibraryFunction(arg_map, returnValue, settings); + const std::string& returnValue = settings->library.returnValue(ftok); + if (!returnValue.empty()) { + std::unordered_map arg_map; + int argn = 0; + for (const ValueFlow::Value& result : args) { + if (!result.isUninitValue()) + arg_map[argn] = result; + argn++; } + return evaluateLibraryFunction(arg_map, returnValue, settings); } } // Check if function modifies argument @@ -1435,9 +1431,10 @@ std::vector execute(const Scope* scope, ProgramMemory& pm, con if (!top) return unknown; - if (Token::simpleMatch(top, "return") && top->astOperand1()) { + if (Token::simpleMatch(top, "return") && top->astOperand1()) return {execute(top->astOperand1(), pm, settings)}; - } else if (Token::Match(top, "%op%")) { + + if (Token::Match(top, "%op%")) { if (execute(top, pm, settings).isUninitValue()) return unknown; const Token* next = nextAfterAstRightmostLeaf(top); diff --git a/lib/token.cpp b/lib/token.cpp index fe30564f496..f24dc6f2773 100644 --- a/lib/token.cpp +++ b/lib/token.cpp @@ -465,6 +465,7 @@ static int multiComparePercent(const Token *tok, const char*& haystack, nonneg i if (haystack[3] == '%') { // %any% haystack += 4; return 1; + } // %assign% haystack += 7; if (tok->isAssignmentOp()) diff --git a/lib/valueflow.cpp b/lib/valueflow.cpp index 7e5f9f667a9..5e9ca00f69c 100644 --- a/lib/valueflow.cpp +++ b/lib/valueflow.cpp @@ -518,7 +518,8 @@ static Library::Container::Yield getContainerYield(Token* tok, const Settings* s if (parent) *parent = tok->astParent(); return c ? c->getYield(tok->strAt(1)) : Library::Container::Yield::NO_YIELD; - } else if (Token::Match(tok->previous(), "%name% (")) { + } + if (Token::Match(tok->previous(), "%name% (")) { if (parent) *parent = tok; if (const Library::Function* f = settings->library.getFunction(tok->previous())) { @@ -1450,7 +1451,7 @@ static void valueFlowArray(TokenList *tokenlist, const Settings *settings) continue; } - else if (Token::Match(tok, "const char %var% [ %num%| ] = %str% ;")) { + if (Token::Match(tok, "const char %var% [ %num%| ] = %str% ;")) { Token *vartok = tok->tokAt(2); Token *strtok = vartok->next()->link()->tokAt(2); constantArrays[vartok->varId()] = strtok; @@ -2175,8 +2176,7 @@ static const std::string& invertAssign(const std::string& assign) if (it == lookup.end()) { return emptyString; } - else - return it->second; + return it->second; } static std::string removeAssign(const std::string& assign) { @@ -2488,11 +2488,13 @@ struct ValueFlowAnalyzer : Analyzer { result.dependent = true; result.unknown = false; return result; - } else if (tok->hasKnownIntValue() || tok->isLiteral()) { + } + if (tok->hasKnownIntValue() || tok->isLiteral()) { result.dependent = false; result.unknown = false; return result; - } else if (Token::Match(tok, "%cop%")) { + } + if (Token::Match(tok, "%cop%")) { if (isLikelyStream(isCPP(), tok->astOperand1())) { result.dependent = false; return result; @@ -2509,7 +2511,8 @@ struct ValueFlowAnalyzer : Analyzer { result.dependent = lhs.dependent || rhs.dependent; result.unknown = lhs.unknown || rhs.unknown; return result; - } else if (Token::Match(tok->previous(), "%name% (")) { + } + if (Token::Match(tok->previous(), "%name% (")) { std::vector args = getArguments(tok->previous()); if (Token::Match(tok->tokAt(-2), ". %name% (")) { args.push_back(tok->tokAt(-2)->astOperand1()); @@ -2524,23 +2527,23 @@ struct ValueFlowAnalyzer : Analyzer { result.unknown = false; } return result; - } else { - std::unordered_map symbols = getSymbols(tok); - result.dependent = false; - for (auto&& p : symbols) { - const Token* arg = p.second; - ConditionState cs = analyzeCondition(arg, depth - 1); - result.dependent = cs.dependent; - if (result.dependent) - break; - } - if (result.dependent) { - // Check if we can evaluate the token - if (!evaluate(Evaluate::Integral, tok).empty()) - result.unknown = false; - } - return result; } + + std::unordered_map symbols = getSymbols(tok); + result.dependent = false; + for (auto&& p : symbols) { + const Token* arg = p.second; + ConditionState cs = analyzeCondition(arg, depth - 1); + result.dependent = cs.dependent; + if (result.dependent) + break; + } + if (result.dependent) { + // Check if we can evaluate the token + if (!evaluate(Evaluate::Integral, tok).empty()) + result.unknown = false; + } + return result; } virtual Action isModified(const Token* tok) const { @@ -2624,8 +2627,7 @@ struct ValueFlowAnalyzer : Analyzer { { if (d == Direction::Forward) return tok->str(); - else - return invertAssign(tok->str()); + return invertAssign(tok->str()); } virtual Action isWritable(const Token* tok, Direction d) const { @@ -2831,11 +2833,11 @@ struct ValueFlowAnalyzer : Analyzer { Action a = isAliasModified(tok); if (inconclusive && a.isModified()) return Action::Inconclusive; - else - return a; - } else if (isSameSymbolicValue(ref)) { - return Action::Read | Action::SymbolicMatch; + return a; } + if (isSameSymbolicValue(ref)) + return Action::Read | Action::SymbolicMatch; + return Action::None; } From 58bf4980771be8c1fc8a2c51953f1221a13ac903 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 13:48:41 +0200 Subject: [PATCH 09/15] Fix readability-else-after-return --- lib/checkio.cpp | 7 +-- lib/templatesimplifier.cpp | 115 ++++++++++++++++++------------------- lib/valueflow.cpp | 35 +++++------ 3 files changed, 77 insertions(+), 80 deletions(-) diff --git a/lib/checkio.cpp b/lib/checkio.cpp index 8bfd6b0cd9e..3af25d24724 100644 --- a/lib/checkio.cpp +++ b/lib/checkio.cpp @@ -1681,10 +1681,7 @@ bool CheckIO::ArgumentInfo::isArrayOrPointer() const const Token *tok = typeToken; while (Token::Match(tok, "const|struct")) tok = tok->next(); - if (tok && tok->strAt(1) == "*") - return true; - - return false; + return tok && tok->strAt(1) == "*"; } bool CheckIO::ArgumentInfo::isComplexType() const @@ -1703,7 +1700,7 @@ bool CheckIO::ArgumentInfo::isKnownType() const { if (variableInfo) return (typeToken->isStandardType() || typeToken->next()->isStandardType() || isComplexType()); - else if (functionInfo) + if (functionInfo) return (typeToken->isStandardType() || functionInfo->retType || Token::Match(typeToken, "std :: string|wstring")); return typeToken->isStandardType() || Token::Match(typeToken, "std :: string|wstring"); diff --git a/lib/templatesimplifier.cpp b/lib/templatesimplifier.cpp index 267ac15ddd6..603c338a340 100644 --- a/lib/templatesimplifier.cpp +++ b/lib/templatesimplifier.cpp @@ -420,7 +420,7 @@ unsigned int TemplateSimplifier::templateParameters(const Token *tok) syntaxError(tok); if (Token::Match(tok, ">|>>|>>=")) return numberOfParameters; - else if (tok->str() == ",") { + if (tok->str() == ",") { ++numberOfParameters; tok = tok->next(); continue; @@ -479,9 +479,9 @@ unsigned int TemplateSimplifier::templateParameters(const Token *tok) return 0; if (tok->str() == ">" && level == 0) return numberOfParameters; - else if ((tok->str() == ">>" || tok->str() == ">>=") && level == 1) + if ((tok->str() == ">>" || tok->str() == ">>=") && level == 1) return numberOfParameters; - else if (tok->str() == ",") { + if (tok->str() == ",") { if (level == 0) ++numberOfParameters; tok = tok->next(); @@ -973,42 +973,41 @@ void TemplateSimplifier::getTemplateInstantiations() // full name matches addInstantiation(tok, it->scope()); break; - } else { - // full name doesn't match so try with using namespaces if available - bool found = false; - for (const auto & nameSpace : tok->scopeInfo()->usingNamespaces) { - std::string fullNameSpace = scopeName + (scopeName.empty()?"":" :: ") + - nameSpace + (qualification.empty()?"":" :: ") + qualification; - std::string newFullName = fullNameSpace + " :: " + tok->str(); - const std::list::const_iterator it1 = std::find_if(mTemplateDeclarations.cbegin(), mTemplateDeclarations.cend(), FindFullName(newFullName)); - if (it1 != mTemplateDeclarations.end()) { - // insert using namespace into token stream - std::string::size_type offset = 0; - std::string::size_type pos = 0; - while ((pos = nameSpace.find(' ', offset)) != std::string::npos) { - qualificationTok->insertToken(nameSpace.substr(offset, pos - offset), emptyString, true); - offset = pos + 1; - } - qualificationTok->insertToken(nameSpace.substr(offset), emptyString, true); - qualificationTok->insertToken("::", emptyString, true); - addInstantiation(tok, it1->scope()); - found = true; - break; + } + // full name doesn't match so try with using namespaces if available + bool found = false; + for (const auto & nameSpace : tok->scopeInfo()->usingNamespaces) { + std::string fullNameSpace = scopeName + (scopeName.empty()?"":" :: ") + + nameSpace + (qualification.empty()?"":" :: ") + qualification; + std::string newFullName = fullNameSpace + " :: " + tok->str(); + const std::list::const_iterator it1 = std::find_if(mTemplateDeclarations.cbegin(), mTemplateDeclarations.cend(), FindFullName(newFullName)); + if (it1 != mTemplateDeclarations.end()) { + // insert using namespace into token stream + std::string::size_type offset = 0; + std::string::size_type pos = 0; + while ((pos = nameSpace.find(' ', offset)) != std::string::npos) { + qualificationTok->insertToken(nameSpace.substr(offset, pos - offset), emptyString, true); + offset = pos + 1; } - } - if (found) - break; - - if (scopeName.empty()) { - if (!qualification.empty()) - addInstantiation(tok, qualification); - else - addInstantiation(tok, tok->scopeInfo()->name); + qualificationTok->insertToken(nameSpace.substr(offset), emptyString, true); + qualificationTok->insertToken("::", emptyString, true); + addInstantiation(tok, it1->scope()); + found = true; break; } - const std::string::size_type pos = scopeName.rfind(" :: "); - scopeName = (pos == std::string::npos) ? std::string() : scopeName.substr(0,pos); } + if (found) + break; + + if (scopeName.empty()) { + if (!qualification.empty()) + addInstantiation(tok, qualification); + else + addInstantiation(tok, tok->scopeInfo()->name); + break; + } + const std::string::size_type pos = scopeName.rfind(" :: "); + scopeName = (pos == std::string::npos) ? std::string() : scopeName.substr(0,pos); } } } @@ -1076,8 +1075,8 @@ void TemplateSimplifier::useDefaultArgumentValues(TokenAndName &declaration) if (!eq.empty()) eq.back().end = tok; break; - } else - --templateParmDepth; + } + --templateParmDepth; } // map type parameter name to index @@ -1407,7 +1406,7 @@ bool TemplateSimplifier::getTemplateNamePositionTemplateFunction(const Token *to if (Token::Match(tok->next(), ";|{")) return false; // skip decltype(...) - else if (Token::simpleMatch(tok->next(), "decltype (")) { + if (Token::simpleMatch(tok->next(), "decltype (")) { const Token * end = tok->linkAt(2)->previous(); while (tok->next() && tok != end) { tok = tok->next(); @@ -1439,7 +1438,7 @@ bool TemplateSimplifier::getTemplateNamePositionTemplateVariable(const Token *to if (Token::Match(tok->next(), ";|{|(|using")) return false; // skip decltype(...) - else if (Token::simpleMatch(tok->next(), "decltype (")) { + if (Token::simpleMatch(tok->next(), "decltype (")) { const Token * end = tok->linkAt(2); while (tok->next() && tok != end) { tok = tok->next(); @@ -2137,7 +2136,8 @@ void TemplateSimplifier::expandTemplate( eraseTokens(tok3, closingBracket->next()); } continue; - } else if (!templateDeclaration.scope().empty() && + } + if (!templateDeclaration.scope().empty() && !alreadyHasNamespace(templateDeclaration, tok3) && !Token::Match(closingBracket->next(), "(|::")) { if (copy) @@ -2336,8 +2336,9 @@ bool TemplateSimplifier::simplifyNumericCalculations(Token *tok, bool isTemplate // Don't simplify "%num% / 0" if (Token::Match(op, "[/%] 0")) { - if (isTemplate) throw InternalError(op, "Instantiation error: Divide by zero in template instantiation.", InternalError::INSTANTIATION); - else return ret; + if (isTemplate) + throw InternalError(op, "Instantiation error: Divide by zero in template instantiation.", InternalError::INSTANTIATION); + return ret; } // Integer operations @@ -3298,28 +3299,25 @@ static bool matchTemplateParameters(const Token *nameTok, const std::listisUnsigned()) { if (*it != "unsigned") return false; - else { - ++it; - if (it == strings.cend()) - return false; - } + + ++it; + if (it == strings.cend()) + return false; } else if (tok->isSigned()) { if (*it != "signed") return false; - else { - ++it; - if (it == strings.cend()) - return false; - } + + ++it; + if (it == strings.cend()) + return false; } if (tok->isLong()) { if (*it != "long") return false; - else { - ++it; - if (it == strings.cend()) - return false; - } + + ++it; + if (it == strings.cend()) + return false; } if (*it != tok->str()) return false; @@ -3378,9 +3376,8 @@ void TemplateSimplifier::replaceTemplateUsage( if (ti->token() == tok) { ti = mTemplateInstantiations.erase(ti); break; - } else { - ++ti; } + ++ti; } } } diff --git a/lib/valueflow.cpp b/lib/valueflow.cpp index 5e9ca00f69c..d2d420ff469 100644 --- a/lib/valueflow.cpp +++ b/lib/valueflow.cpp @@ -2903,7 +2903,8 @@ struct ValueFlowAnalyzer : Analyzer { return evaluateInt(tok, [&] { return pms.get(tok, ctx, getProgramState()); }); - } else if (e == Evaluate::ContainerEmpty) { + } + if (e == Evaluate::ContainerEmpty) { const ValueFlow::Value* value = ValueFlow::findValue(tok->values(), nullptr, [](const ValueFlow::Value& v) { return v.isKnown() && v.isContainerSizeValue(); }); @@ -2914,9 +2915,8 @@ struct ValueFlowAnalyzer : Analyzer { if (pm.getContainerEmptyValue(tok->exprId(), out)) return {static_cast(out)}; return {}; - } else { - return {}; } + return {}; } void assume(const Token* tok, bool state, unsigned int flags) override { @@ -3101,9 +3101,9 @@ struct SingleValueFlowAnalyzer : ValueFlowAnalyzer { const Scope* scope = endBlock->scope(); if (!scope) return false; - if (scope->type == Scope::eLambda) { + if (scope->type == Scope::eLambda) return value.isLifetimeValue(); - } else if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || + if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || scope->type == Scope::eFor) { if (value.isKnown() || value.isImpossible()) return true; @@ -3474,7 +3474,8 @@ static std::vector getLifetimeTokens(const Token* tok, if (var->isArgument()) { errorPath.emplace_back(varDeclEndToken, "Passed to reference."); return {{tok, true, std::move(errorPath)}}; - } else if (Token::simpleMatch(varDeclEndToken, "=")) { + } + if (Token::simpleMatch(varDeclEndToken, "=")) { errorPath.emplace_back(varDeclEndToken, "Assigned to reference."); const Token *vartok = varDeclEndToken->astOperand2(); const bool temporary = isTemporary(true, vartok, nullptr, true); @@ -3494,8 +3495,7 @@ static std::vector getLifetimeTokens(const Token* tok, const Token* contok = var->nameToken()->astParent()->astOperand2(); if (astIsContainer(contok)) return getLifetimeTokens(contok, escape, std::move(errorPath), pred, depth - 1); - else - return std::vector{}; + return std::vector{}; } else { return std::vector {}; } @@ -3543,7 +3543,8 @@ static std::vector getLifetimeTokens(const Token* tok, } } return result; - } else if (Token::Match(tok->tokAt(-2), ". %name% (") && tok->tokAt(-2)->originalName() != "->" && astIsContainer(tok->tokAt(-2)->astOperand1())) { + } + if (Token::Match(tok->tokAt(-2), ". %name% (") && tok->tokAt(-2)->originalName() != "->" && astIsContainer(tok->tokAt(-2)->astOperand1())) { const Library::Container* library = getLibraryContainer(tok->tokAt(-2)->astOperand1()); const Library::Container::Yield y = library->getYield(tok->previous()->str()); if (y == Library::Container::Yield::AT_INDEX || y == Library::Container::Yield::ITEM) { @@ -4857,9 +4858,9 @@ static void valueFlowLifetime(TokenList *tokenlist, SymbolDatabase* /*db*/, Erro auto isImplicitCapturingThis = [&](const Token* tok2) { if (capturedThis) return false; - if (Token::simpleMatch(tok2, "this")) { + if (Token::simpleMatch(tok2, "this")) return true; - } else if (tok2->variable()) { + if (tok2->variable()) { if (Token::simpleMatch(tok2->previous(), ".")) return false; const Variable* var = tok2->variable(); @@ -4868,9 +4869,9 @@ static void valueFlowLifetime(TokenList *tokenlist, SymbolDatabase* /*db*/, Erro if (var->isArgument()) return false; return exprDependsOnThis(tok2); - } else if (Token::simpleMatch(tok2, "(")) { + } + if (Token::simpleMatch(tok2, "(")) return exprDependsOnThis(tok2); - } return false; }; @@ -6561,7 +6562,8 @@ struct ConditionHandler { "valueFlowAfterCondition: " + cond.vartok->expressionString() + " is changed in conditional block"); return; - } else if (bailBlock >= 0) { + } + if (bailBlock >= 0) { if (settings->debugwarnings) bailout(tokenlist, errorLogger, @@ -7044,7 +7046,7 @@ static void valueFlowForLoopSimplify(Token* const bodyStart, getProgramMemory(tok2->astTop(), expr, ValueFlow::Value(value), settings)))) break; - else if (Token::simpleMatch(tok2, ") {")) { + if (Token::simpleMatch(tok2, ") {")) { if (vartok->varId() && Token::findmatch(tok2->link(), "%varid%", tok2, vartok->varId())) { if (Token::findmatch(tok2, "continue|break|return", tok2->linkAt(1), vartok->varId())) { if (settings->debugwarnings) @@ -7280,7 +7282,8 @@ struct MultiValueFlowAnalyzer : ValueFlowAnalyzer { return std::all_of(values.cbegin(), values.cend(), [](const std::pair& p) { return p.second.isLifetimeValue(); }); - } else if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || + } + if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || scope->type == Scope::eFor) { auto pred = [](const ValueFlow::Value& value) { if (value.isKnown()) From 3837dee318049eb981e61675af7850a1ed0ceabe Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 14:49:43 +0200 Subject: [PATCH 10/15] Fix readability-else-after-return --- lib/programmemory.cpp | 18 ++--- lib/tokenize.cpp | 149 +++++++++++++++++++++--------------------- 2 files changed, 83 insertions(+), 84 deletions(-) diff --git a/lib/programmemory.cpp b/lib/programmemory.cpp index 45577059ecd..08fc8f4531a 100644 --- a/lib/programmemory.cpp +++ b/lib/programmemory.cpp @@ -72,8 +72,7 @@ const ValueFlow::Value* ProgramMemory::getValue(nonneg int exprid, bool impossib const bool found = it != mValues.cend() && (impossible || !it->second.isImpossible()); if (found) return &it->second; - else - return nullptr; + return nullptr; } // cppcheck-suppress unusedFunction @@ -1162,23 +1161,25 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const const ValueFlow::Value* value = nullptr; if (!expr) return unknown; - else if (expr->hasKnownIntValue() && !expr->isAssignmentOp() && expr->str() != ",") { + if (expr->hasKnownIntValue() && !expr->isAssignmentOp() && expr->str() != ",") return expr->values().front(); - } else if ((value = expr->getKnownValue(ValueFlow::Value::ValueType::FLOAT)) || + if ((value = expr->getKnownValue(ValueFlow::Value::ValueType::FLOAT)) || (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_START)) || (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_END)) || (value = expr->getKnownValue(ValueFlow::Value::ValueType::CONTAINER_SIZE))) { return *value; - } else if (expr->isNumber()) { + } + if (expr->isNumber()) { if (MathLib::isFloat(expr->str())) return unknown; MathLib::bigint i = MathLib::toLongNumber(expr->str()); if (i < 0 && astIsUnsigned(expr)) return unknown; return ValueFlow::Value{i}; - } else if (expr->isBoolean()) { + } + if (expr->isBoolean()) return ValueFlow::Value{ expr->str() == "true" }; - } else if (Token::Match(expr->tokAt(-2), ". %name% (") && astIsContainer(expr->tokAt(-2)->astOperand1())) { + if (Token::Match(expr->tokAt(-2), ". %name% (") && astIsContainer(expr->tokAt(-2)->astOperand1())) { const Token* containerTok = expr->tokAt(-2)->astOperand1(); const Library::Container::Yield yield = containerTok->valueType()->container->getYield(expr->strAt(-1)); if (yield == Library::Container::Yield::SIZE) { @@ -1187,7 +1188,8 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const return unknown; v.valueType = ValueFlow::Value::ValueType::INT; return v; - } else if (yield == Library::Container::Yield::EMPTY) { + } + if (yield == Library::Container::Yield::EMPTY) { ValueFlow::Value v = execute(containerTok, pm); if (!v.isContainerSizeValue()) return unknown; diff --git a/lib/tokenize.cpp b/lib/tokenize.cpp index ccde0dd0ac6..5842594d24f 100644 --- a/lib/tokenize.cpp +++ b/lib/tokenize.cpp @@ -212,10 +212,11 @@ nonneg int Tokenizer::sizeOfType(const Token *type) const return 0; return podtype->size; - } else if (type->isLong()) { + } + if (type->isLong()) { if (type->str() == "double") return mSettings->platform.sizeof_long_double; - else if (type->str() == "long") + if (type->str() == "long") return mSettings->platform.sizeof_long_long; } @@ -250,15 +251,15 @@ bool Tokenizer::duplicateTypedef(Token **tokPtr, const Token *name, const Token if (end) end = end->next(); } else if (end->str() == "(") { - if (tok->previous()->str().compare(0, 8, "operator") == 0) { + if (tok->previous()->str().compare(0, 8, "operator") == 0) // conversion operator return false; - } else if (tok->previous()->str() == "typedef") { + if (tok->previous()->str() == "typedef") // typedef of function returning this type return false; - } else if (Token::Match(tok->previous(), "public:|private:|protected:")) { + if (Token::Match(tok->previous(), "public:|private:|protected:")) return false; - } else if (tok->previous()->str() == ">") { + if (tok->previous()->str() == ">") { if (!Token::Match(tok->tokAt(-2), "%type%")) return false; @@ -313,17 +314,16 @@ bool Tokenizer::duplicateTypedef(Token **tokPtr, const Token *name, const Token typeDef->strAt(3) != "{") { // declaration after forward declaration return true; - } else if (tok->next()->str() == "{") { + } + if (tok->next()->str() == "{") return true; - } else if (Token::Match(tok->next(), ")|*")) { + if (Token::Match(tok->next(), ")|*")) return true; - } else if (tok->next()->str() == name->str()) { + if (tok->next()->str() == name->str()) return true; - } else if (tok->next()->str() != ";") { + if (tok->next()->str() != ";") return true; - } else { - return false; - } + return false; } else if (tok->previous()->str() == "union") { return tok->next()->str() != ";"; } else if (isCPP() && tok->previous()->str() == "class") { @@ -354,7 +354,7 @@ void Tokenizer::unsupportedTypedef(const Token *tok) const while (tok) { if (level == 0 && tok->str() == ";") break; - else if (tok->str() == "{") + if (tok->str() == "{") ++level; else if (tok->str() == "}") { if (level == 0) @@ -383,7 +383,8 @@ Token * Tokenizer::deleteInvalidTypedef(Token *typeDef) if (typeDef->next()->str() == ";") { typeDef->deleteNext(); break; - } else if (typeDef->next()->str() == "{") + } + if (typeDef->next()->str() == "{") Token::eraseTokens(typeDef, typeDef->linkAt(1)); else if (typeDef->next()->str() == "}") break; @@ -466,20 +467,19 @@ static Token *splitDefinitionFromTypedef(Token *tok, nonneg int *unnamedCount) tok->deleteThis(); tok1->deleteThis(); return nullptr; - } else { - tok1->insertToken("typedef"); - tok1 = tok1->next(); - Token * tok3 = tok1; - if (isConst) { - tok1->insertToken("const"); - tok1 = tok1->next(); - } - tok1->insertToken(tok->next()->str()); // struct, union or enum + } + tok1->insertToken("typedef"); + tok1 = tok1->next(); + Token * tok3 = tok1; + if (isConst) { + tok1->insertToken("const"); tok1 = tok1->next(); - tok1->insertToken(name); - tok->deleteThis(); - tok = tok3; } + tok1->insertToken(tok->next()->str()); // struct, union or enum + tok1 = tok1->next(); + tok1->insertToken(name); + tok->deleteThis(); + tok = tok3; return tok; } @@ -1374,7 +1374,7 @@ void Tokenizer::simplifyTypedefCpp() } // function pointer - else if (Token::Match(tokOffset2, "* %name% ) (")) { + if (Token::Match(tokOffset2, "* %name% ) (")) { // name token wasn't a name, it was part of the type typeEnd = typeEnd->next(); functionPtr = true; @@ -2313,12 +2313,11 @@ void Tokenizer::simplifyTypedefCpp() if (!tokOffset->next()) return; // invalid input - else if (tokOffset->next()->str() == ";") + if (tokOffset->next()->str() == ";") break; - else if (tokOffset->str() == "]") + if (tokOffset->str() == "]") break; - else - tokOffset = tokOffset->next(); + tokOffset = tokOffset->next(); } arrayEnd = tokOffset; @@ -2410,11 +2409,10 @@ namespace { for (const auto & child : children) { if (child.type == Record && (child.name == scope || child.fullName == scope)) return &child; - else { - const ScopeInfo3 * temp = child.findInChildren(scope); - if (temp) - return temp; - } + + const ScopeInfo3 * temp = child.findInChildren(scope); + if (temp) + return temp; } return nullptr; } @@ -2764,7 +2762,7 @@ namespace { while (end) { if (end->str() == "{" && !Token::Match(end->tokAt(-2), ":|, %name%")) return end; - else if (end->str() == ";") + if (end->str() == ";") break; end = end->next(); } @@ -3058,7 +3056,8 @@ bool Tokenizer::simplifyUsing() } } continue; - } else if (inMemberFunc && memberFuncScope) { + } + if (inMemberFunc && memberFuncScope) { if (!usingMatch(nameToken, scope, &tok1, scope1, currentScope1, memberFuncScope)) continue; } else if (!usingMatch(nameToken, scope, &tok1, scope1, currentScope1, nullptr)) @@ -3079,19 +3078,18 @@ bool Tokenizer::simplifyUsing() tok1->deletePrevious(); tok1->deletePrevious(); break; - } else { - const std::string::size_type idx = fullScope.rfind("::"); + } + const std::string::size_type idx = fullScope.rfind("::"); - if (idx == std::string::npos) - break; + if (idx == std::string::npos) + break; - if (tok1->strAt(-2) == fullScope.substr(idx + 3)) { - tok1->deletePrevious(); - tok1->deletePrevious(); - fullScope.resize(idx - 1); - } else - break; - } + if (tok1->strAt(-2) == fullScope.substr(idx + 3)) { + tok1->deletePrevious(); + tok1->deletePrevious(); + fullScope.resize(idx - 1); + } else + break; } // remove global namespace if present @@ -4719,8 +4717,7 @@ void Tokenizer::setVarIdPass1() if (tok->previous() && tok->previous()->str() == "::") { if (Token::Match(tok->tokAt(-2), ")|]|%name%")) continue; - else - globalNamespace = true; + globalNamespace = true; } if (tok->next() && tok->next()->str() == "::") continue; @@ -4903,7 +4900,8 @@ void Tokenizer::setVarIdPass2() usingnamespaces.push_back(tok->tokAt(2)); tok = endtok; continue; - } else if (Token::Match(tok, "namespace %name% {")) { + } + if (Token::Match(tok, "namespace %name% {")) { scope.push_back(tok->strAt(1)); endOfScope[tok->linkAt(2)] = tok->strAt(1); } @@ -6546,7 +6544,7 @@ void Tokenizer::simplifyFunctionParameters() for (const Token* tok2 = tok1; tok2; tok2 = tok2->next()) { if (Token::simpleMatch(tok2, "; {")) break; - else if (tok2->str() == "{") { + if (tok2->str() == "{") { bailOut = true; break; } @@ -6704,7 +6702,7 @@ void Tokenizer::simplifyFunctionPointers() } // check for start of statement - else if (tok->previous() && !Token::Match(tok->previous(), "{|}|;|,|(|public:|protected:|private:")) + if (tok->previous() && !Token::Match(tok->previous(), "{|}|;|,|(|public:|protected:|private:")) continue; if (Token::Match(tok, "delete|else|return|throw|typedef")) @@ -7031,7 +7029,7 @@ void Tokenizer::simplifyVarDecl(Token * tokBegin, const Token * const tokEnd, co continue; } //non-VLA case - else if (Token::Match(varName, "%name% ,|=")) { + if (Token::Match(varName, "%name% ,|=")) { if (varName->str() != "operator") { tok2 = varName->next(); // The ',' or '=' token @@ -7419,7 +7417,7 @@ Token * Tokenizer::initVar(Token * tok) // check initializer.. if (tok->tokAt(2)->isStandardType() || tok->strAt(2) == "void") return tok; - else if (!tok->tokAt(2)->isNumber() && !Token::Match(tok->tokAt(2), "%type% (") && tok->strAt(2) != "&" && tok->tokAt(2)->varId() == 0) + if (!tok->tokAt(2)->isNumber() && !Token::Match(tok->tokAt(2), "%type% (") && tok->strAt(2) != "&" && tok->tokAt(2)->varId() == 0) return tok; // insert '; var =' @@ -8019,9 +8017,9 @@ static bool isAlignAttribute(const Token * tok) template static T* skipCPPOrAlignAttribute(T * tok) { - if (isCPPAttribute(tok)) { + if (isCPPAttribute(tok)) return tok->link(); - } else if (isAlignAttribute(tok)) { + if (isAlignAttribute(tok)) { return tok->next()->link(); } return tok; @@ -8762,9 +8760,9 @@ Token* Tokenizer::getAttributeFuncTok(Token* tok, bool gccattr) const { prev = prev->previous(); if (Token::simpleMatch(prev, ")") && Token::Match(prev->link()->previous(), "%name% (")) return prev->link()->previous(); - else if (Token::simpleMatch(prev, ")") && Token::Match(prev->link()->tokAt(-2), "operator %op% (") && isCPP()) + if (Token::simpleMatch(prev, ")") && Token::Match(prev->link()->tokAt(-2), "operator %op% (") && isCPP()) return prev->link()->tokAt(-2); - else if ((!prev || Token::Match(prev, "[;{}*]")) && Token::Match(tok->previous(), "%name%")) + if ((!prev || Token::Match(prev, "[;{}*]")) && Token::Match(tok->previous(), "%name%")) return tok->previous(); } return nullptr; @@ -9855,9 +9853,9 @@ void Tokenizer::simplifyOverloadedOperators() for (const Token *tok2 = tok->next(); tok2; tok2 = tok2->next()) { if (tok2->str() == "}") break; - else if (indent == 0 && tok2->str() == ";") + if (indent == 0 && tok2->str() == ";") break; - else if (tok2->str() == "{") { + if (tok2->str() == "{") { if (indent == 0) ++indent; else @@ -10297,21 +10295,20 @@ void Tokenizer::simplifyNamespaceAliases() // delete duplicate tok2 = deleteAlias(tok2->previous()); continue; - } else { - // conflicting declaration (syntax error) - // cppcheck-suppress duplicateBranch - remove when TODO below is addressed - if (endScope == scope) { - // delete conflicting declaration - tok2 = deleteAlias(tok2->previous()); - } + } + // conflicting declaration (syntax error) + // cppcheck-suppress duplicateBranch - remove when TODO below is addressed + if (endScope == scope) { + // delete conflicting declaration + tok2 = deleteAlias(tok2->previous()); + } - // new declaration - else { - // TODO: use the new alias in this scope - tok2 = deleteAlias(tok2->previous()); - } - continue; + // new declaration + else { + // TODO: use the new alias in this scope + tok2 = deleteAlias(tok2->previous()); } + continue; } if (tok2->strAt(1) == "::" && !alreadyHasNamespace(tokNameStart, tokNameEnd, tok2)) { From d3d81b48ac1d5e4fd5d7b7fd8932ba047073b6d8 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 15:40:26 +0200 Subject: [PATCH 11/15] Fix readability-else-after-return --- lib/symboldatabase.cpp | 127 ++++++++++++++++++------------------- lib/templatesimplifier.cpp | 2 +- 2 files changed, 63 insertions(+), 66 deletions(-) diff --git a/lib/symboldatabase.cpp b/lib/symboldatabase.cpp index da189b629fc..731953ebed7 100644 --- a/lib/symboldatabase.cpp +++ b/lib/symboldatabase.cpp @@ -918,7 +918,7 @@ void SymbolDatabase::createSymbolDatabaseNeedInitialization() } /** check for arguments with default values */ - else if (func.argCount() == func.initializedArgCount()) { + if (func.argCount() == func.initializedArgCount()) { hasDefaultConstructor = true; break; } @@ -1744,7 +1744,7 @@ void SymbolDatabase::setArrayDimensionsUsingValueFlow() continue; } - else if (dimension.tok->valueType() && dimension.tok->valueType()->pointer == 0) { + if (dimension.tok->valueType() && dimension.tok->valueType()->pointer == 0) { int bits = 0; switch (dimension.tok->valueType()->type) { case ValueType::Type::CHAR: @@ -1811,7 +1811,8 @@ bool SymbolDatabase::isFunction(const Token *tok, const Scope* outerScope, const *argStart = argStartTok; *declEnd = Token::findmatch(tok2->link()->next(), "{|;"); return true; - } else if (tok2 && tok2->str() == "[") { + } + if (tok2 && tok2->str() == "[") { while (tok2 && tok2->str() == "[") tok2 = tok2->link()->next(); if (Token::Match(tok2, "{|;|const|=")) { @@ -2759,8 +2760,7 @@ bool Function::argsMatch(const Scope *scope, const Token *first, const Token *se else if (first->str() == ")") { if (openParen == 1) return true; - else - --openParen; + --openParen; } // skip optional type information @@ -3495,9 +3495,9 @@ const std::string& Type::name() const const Token* next = classDef->next(); if (classScope && classScope->enumClass && isEnumType()) return next->strAt(1); - else if (next->str() == "class") + if (next->str() == "class") return next->strAt(1); - else if (next->isName()) + if (next->isName()) return next->str(); return emptyString; } @@ -3543,15 +3543,14 @@ bool Type::hasCircularDependencies(std::set* ancestors) const for (std::vector::const_iterator parent=derivedFrom.cbegin(); parent!=derivedFrom.cend(); ++parent) { if (!parent->type) continue; - else if (this==parent->type) + if (this==parent->type) return true; - else if (ancestors->find(*parent)!=ancestors->end()) + if (ancestors->find(*parent)!=ancestors->end()) + return true; + + ancestors->insert(*parent); + if (parent->type->hasCircularDependencies(ancestors)) return true; - else { - ancestors->insert(*parent); - if (parent->type->hasCircularDependencies(ancestors)) - return true; - } } return false; } @@ -4567,13 +4566,13 @@ void Scope::getVariableList(const Settings* settings, const Token* start, const break; // Is it a function? - else if (tok->str() == "{") { + if (tok->str() == "{") { tok = tok->link(); continue; } // Is it a nested class or structure? - else if (tok->isKeyword() && Token::Match(tok, "class|struct|union|namespace %type% :|{")) { + if (tok->isKeyword() && Token::Match(tok, "class|struct|union|namespace %type% :|{")) { tok = tok->tokAt(2); while (tok && tok->str() != "{") tok = tok->next(); @@ -4581,13 +4580,15 @@ void Scope::getVariableList(const Settings* settings, const Token* start, const // skip implementation tok = tok->link(); continue; - } else - break; - } else if (tok->isKeyword() && Token::Match(tok, "struct|union {")) { + } + break; + } + if (tok->isKeyword() && Token::Match(tok, "struct|union {")) { if (Token::Match(tok->next()->link(), "} %name% ;|[")) { tok = tok->next()->link()->tokAt(2); continue; - } else if (Token::simpleMatch(tok->next()->link(), "} ;")) { + } + if (Token::simpleMatch(tok->next()->link(), "} ;")) { tok = tok->next(); continue; } @@ -4604,8 +4605,7 @@ void Scope::getVariableList(const Settings* settings, const Token* start, const } if (tok) continue; - else - break; + break; } // "private:" "public:" "protected:" etc @@ -4648,9 +4648,9 @@ void Scope::getVariableList(const Settings* settings, const Token* start, const } // Search for start of statement.. - else if (tok->previous() && !Token::Match(tok->previous(), ";|{|}|public:|protected:|private:")) + if (tok->previous() && !Token::Match(tok->previous(), ";|{|}|public:|protected:|private:")) continue; - else if (tok->str() == ";") + if (tok->str() == ";") continue; tok = checkVariable(tok, varaccess, settings); @@ -4981,13 +4981,11 @@ const Enumerator * SymbolDatabase::findEnumerator(const Token * tok, std::set::const_iterator it = scope->nestedList.cbegin(), end = scope->nestedList.cend(); it != end; ++it) { - enumerator = (*it)->findEnumerator(tokStr); + for (std::vector::const_iterator it = scope->nestedList.cbegin(), end = scope->nestedList.cend(); it != end; ++it) { + enumerator = (*it)->findEnumerator(tokStr); - if (enumerator && !(enumerator->scope && enumerator->scope->enumClass)) - return enumerator; - } + if (enumerator && !(enumerator->scope && enumerator->scope->enumClass)) + return enumerator; } } } @@ -5152,17 +5150,17 @@ const Type* SymbolDatabase::findVariableType(const Scope *start, const Token *ty while (scope) { if (scope->className == tok1->str()) break; - else { - const Scope *scope1 = scope->findRecordInNestedList(tok1->str()); - if (scope1) { - scope = scope1; - break; - } else if (scope->type == Scope::eFunction && scope->functionOf) - scope = scope->functionOf; - else - scope = scope->nestedIn; + const Scope *scope1 = scope->findRecordInNestedList(tok1->str()); + + if (scope1) { + scope = scope1; + break; } + if (scope->type == Scope::eFunction && scope->functionOf) + scope = scope->functionOf; + else + scope = scope->nestedIn; } } @@ -5648,15 +5646,14 @@ const Function* SymbolDatabase::findFunction(const Token* const tok) const while (currScope) { if (currScope->className == tok1->str()) break; - else { - const Scope *scope = currScope->findRecordInNestedList(tok1->str()); - if (scope) { - currScope = scope; - break; - } else - currScope = currScope->nestedIn; + const Scope *scope = currScope->findRecordInNestedList(tok1->str()); + + if (scope) { + currScope = scope; + break; } + currScope = currScope->nestedIn; } } @@ -5690,9 +5687,9 @@ const Function* SymbolDatabase::findFunction(const Token* const tok) const // check for member function else if (Token::Match(tok->tokAt(-2), "!!this .")) { const Token* tok1 = tok->previous()->astOperand1(); - if (tok1 && tok1->valueType() && tok1->valueType()->typeScope) { + if (tok1 && tok1->valueType() && tok1->valueType()->typeScope) return tok1->valueType()->typeScope->findFunction(tok, tok1->valueType()->constness == 1); - } else if (tok1 && Token::Match(tok1->previous(), "%name% (") && tok1->previous()->function() && + if (tok1 && Token::Match(tok1->previous(), "%name% (") && tok1->previous()->function() && tok1->previous()->function()->retDef) { ValueType vt = ValueType::parseDecl(tok1->previous()->function()->retDef, mSettings, mIsCpp); if (vt.typeScope) @@ -5972,7 +5969,7 @@ const Type* SymbolDatabase::findType(const Token *startTok, const Scope *startSc const Type * type = scope->findType(tok->str()); if (type) return type; - else if (const Scope *scope1 = scope->findRecordInBase(tok->str())) { + if (const Scope *scope1 = scope->findRecordInBase(tok->str())) { type = scope1->definedType; if (type) return type; @@ -6032,11 +6029,10 @@ const Type* SymbolDatabase::findTypeInNested(const Token *startTok, const Scope const Type * type = scope->findType(tok->str()); if (hasPath || type) return type; - else { - scope = scope->nestedIn; - if (!scope) - break; - } + + scope = scope->nestedIn; + if (!scope) + break; } } @@ -6052,7 +6048,7 @@ const Scope * SymbolDatabase::findNamespace(const Token * tok, const Scope * sco if (s) return s; - else if (scope->nestedIn) + if (scope->nestedIn) return findNamespace(tok, scope->nestedIn); return nullptr; @@ -6100,10 +6096,8 @@ bool SymbolDatabase::isReservedName(const std::string& iName) const static const auto& cpp_keywords = Keywords::getAll(Standards::cppstd_t::CPPLatest); return cpp_keywords.find(iName) != cpp_keywords.cend(); } - else { - static const auto& c_keywords = Keywords::getAll(Standards::cstd_t::CLatest); - return c_keywords.find(iName) != c_keywords.cend(); - } + static const auto& c_keywords = Keywords::getAll(Standards::cstd_t::CLatest); + return c_keywords.find(iName) != c_keywords.cend(); } nonneg int SymbolDatabase::sizeOfType(const Token *type) const @@ -6720,7 +6714,8 @@ static const Token* parsedecl(const Token* type, valuetype->reference = vt2->reference; type = type->linkAt(1)->next(); continue; - } else if (type->isSigned()) + } + if (type->isSigned()) valuetype->sign = ValueType::Sign::SIGNED; else if (type->isUnsigned()) valuetype->sign = ValueType::Sign::UNSIGNED; @@ -7391,7 +7386,8 @@ bool ValueType::fromLibraryType(const std::string &typestr, const Settings &sett type = ValueType::Type::UNKNOWN_INT; sign = (podtype->sign == 'u') ? ValueType::UNSIGNED : ValueType::SIGNED; return true; - } else if (podtype && podtype->stdtype == Library::PodType::Type::NO) { + } + if (podtype && podtype->stdtype == Library::PodType::Type::NO) { type = ValueType::Type::POD; sign = ValueType::UNKNOWN_SIGN; return true; @@ -7420,7 +7416,8 @@ bool ValueType::fromLibraryType(const std::string &typestr, const Settings &sett if (platformType->mConstPtr) constness = 1; return true; - } else if (!podtype && (typestr == "size_t" || typestr == "std::size_t")) { + } + if (!podtype && (typestr == "size_t" || typestr == "std::size_t")) { originalTypeName = "size_t"; sign = ValueType::UNSIGNED; if (settings.platform.sizeof_size_t == settings.platform.sizeof_long) @@ -7690,11 +7687,11 @@ ValueType::MatchResult ValueType::matchParameter(const ValueType *call, const Va return call->type < func->type ? ValueType::MatchResult::FALLBACK1 : ValueType::MatchResult::FALLBACK2; - else if (call->isFloat() && func->isFloat()) + if (call->isFloat() && func->isFloat()) return ValueType::MatchResult::FALLBACK1; - else if (call->isIntegral() && func->isFloat()) + if (call->isIntegral() && func->isFloat()) return ValueType::MatchResult::FALLBACK2; - else if (call->isFloat() && func->isIntegral()) + if (call->isFloat() && func->isIntegral()) return ValueType::MatchResult::FALLBACK2; return ValueType::MatchResult::UNKNOWN; // TODO } diff --git a/lib/templatesimplifier.cpp b/lib/templatesimplifier.cpp index 78c67e0fad7..13875f68039 100644 --- a/lib/templatesimplifier.cpp +++ b/lib/templatesimplifier.cpp @@ -3851,7 +3851,7 @@ void TemplateSimplifier::simplifyTemplates( for (const Token* tok = arg; tok; tok = tok->next()) { if (tok->str() == ",") return i; - else if (tok->link() && Token::Match(tok, "(|{|[")) + if (tok->link() && Token::Match(tok, "(|{|[")) tok = tok->link(); else if (tok->str() == "<") { const Token* temp = tok->findClosingBracket(); From 262cfd5be6e4ce9f321ba73bd566997ae2c43e38 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 16:02:43 +0200 Subject: [PATCH 12/15] Undo --- .github/workflows/CI-cygwin.yml | 51 +++ .github/workflows/CI-mingw.yml | 37 ++ .github/workflows/CI-unixish-docker.yml | 163 ++++++++ .github/workflows/CI-unixish.yml | 473 ++++++++++++++++++++++++ .github/workflows/CI-windows.yml | 205 ++++++++++ .github/workflows/asan.yml | 90 +++++ .github/workflows/buildman.yml | 28 ++ .github/workflows/cifuzz.yml | 26 ++ .github/workflows/codeql-analysis.yml | 47 +++ .github/workflows/coverage.yml | 61 +++ .github/workflows/format.yml | 40 ++ .github/workflows/iwyu.yml | 149 ++++++++ .github/workflows/release-windows.yml | 145 ++++++++ .github/workflows/selfcheck.yml | 128 +++++++ .github/workflows/tsan.yml | 90 +++++ .github/workflows/ubsan.yml | 86 +++++ .github/workflows/valgrind.yml | 54 +++ 17 files changed, 1873 insertions(+) create mode 100644 .github/workflows/CI-cygwin.yml create mode 100644 .github/workflows/CI-mingw.yml create mode 100644 .github/workflows/CI-unixish-docker.yml create mode 100644 .github/workflows/CI-unixish.yml create mode 100644 .github/workflows/CI-windows.yml create mode 100644 .github/workflows/asan.yml create mode 100644 .github/workflows/buildman.yml create mode 100644 .github/workflows/cifuzz.yml create mode 100644 .github/workflows/codeql-analysis.yml create mode 100644 .github/workflows/coverage.yml create mode 100644 .github/workflows/format.yml create mode 100644 .github/workflows/iwyu.yml create mode 100644 .github/workflows/release-windows.yml create mode 100644 .github/workflows/selfcheck.yml create mode 100644 .github/workflows/tsan.yml create mode 100644 .github/workflows/ubsan.yml create mode 100644 .github/workflows/valgrind.yml diff --git a/.github/workflows/CI-cygwin.yml b/.github/workflows/CI-cygwin.yml new file mode 100644 index 00000000000..31557ecbcc7 --- /dev/null +++ b/.github/workflows/CI-cygwin.yml @@ -0,0 +1,51 @@ +# Some convenient links: +# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md +# + +name: CI-cygwin + +on: [push,pull_request] + +permissions: + contents: read + +defaults: + run: + shell: cmd + +jobs: + build_cygwin: + strategy: + matrix: + os: [windows-2022] + arch: [x64] + include: + - platform: 'x86_64' + packages: | + gcc-g++ + python3 + fail-fast: false + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: Set up Cygwin + uses: cygwin/cygwin-install-action@master + with: + platform: ${{ matrix.arch }} + packages: ${{ matrix.packages }} + + # Cygwin will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries. + - name: Build all and run test + run: | + C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make VERBOSE=1 -j2 check + + - name: Extra test for misra + run: | + cd %GITHUB_WORKSPACE%\addons\test + ..\..\cppcheck.exe --dump -DDUMMY --suppress=uninitvar --inline-suppr misra\misra-test.c --std=c89 --platform=unix64 + python3 ..\misra.py -verify misra\misra-test.c.dump + ..\..\cppcheck.exe --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 misra\misra-ctu-1-test.c misra\misra-ctu-2-test.c + diff --git a/.github/workflows/CI-mingw.yml b/.github/workflows/CI-mingw.yml new file mode 100644 index 00000000000..152e84902c2 --- /dev/null +++ b/.github/workflows/CI-mingw.yml @@ -0,0 +1,37 @@ +# Some convenient links: +# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md +# + +name: CI-mingw + +on: [push,pull_request] + +permissions: + contents: read + +defaults: + run: + shell: cmd + +jobs: + build_mingw: + strategy: + matrix: + os: [windows-2019] # fails to download with "windows-2022" + arch: [x64] # TODO: fix x86 build? + fail-fast: false + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: Set up MinGW + uses: egor-tensin/setup-mingw@v2 + with: + platform: ${{ matrix.arch }} + + # MinGW will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries. + - name: Build all and run test + run: | + mingw32-make VERBOSE=1 -j2 check diff --git a/.github/workflows/CI-unixish-docker.yml b/.github/workflows/CI-unixish-docker.yml new file mode 100644 index 00000000000..f8dd4bb75fe --- /dev/null +++ b/.github/workflows/CI-unixish-docker.yml @@ -0,0 +1,163 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: CI-unixish-docker + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build_cmake: + + strategy: + matrix: + image: ["centos:7", "ubuntu:14.04", "ubuntu:16.04", "ubuntu:18.04", "ubuntu:23.04"] + fail-fast: false # Prefer quick result + + runs-on: ubuntu-22.04 + + # TODO: is this actually applied to the guest? + env: + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + container: + image: ${{ matrix.image }} + + steps: + - uses: actions/checkout@v3 + + - name: Install missing software on CentOS 7 + if: matrix.image == 'centos:7' + run: | + yum install -y cmake gcc-c++ make pcre-devel + yum --enablerepo=extras install -y epel-release + yum install -y ccache + + - name: Install missing software on ubuntu + if: contains(matrix.image, 'ubuntu') + run: | + apt-get update + apt-get install -y cmake g++ make libxml2-utils libpcre3-dev + + # required so a default Qt installation is configured + - name: Install missing software on ubuntu 18.04 + if: false # matrix.os == 'ubuntu-18.04' + run: | + sudo apt-get install qt5-default + + # needs to be called after the package installation since + # - it doesn't call "apt-get update" + # - it doesn't support centos + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + if: matrix.image != 'ubuntu:14.04' # no support for --set-config + with: + key: ${{ github.workflow }}-${{ matrix.image }} + + # tests require CMake 3.9 - no ccache available + - name: CMake build (no tests / no ccache) + if: matrix.image == 'ubuntu:14.04' + run: | + mkdir cmake.output + cd cmake.output + cmake -G "Unix Makefiles" -DHAVE_RULES=On .. + cmake --build . -- -j$(nproc) + + # tests require CMake 3.9 - ccache available + - name: CMake build (no tests) + if: matrix.image == 'centos:7' || matrix.image == 'ubuntu:16.04' + run: | + mkdir cmake.output + cd cmake.output + cmake -G "Unix Makefiles" -DHAVE_RULES=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache .. + cmake --build . -- -j$(nproc) + + - name: CMake build + if: matrix.image != 'centos:7' && matrix.image != 'ubuntu:14.04' && matrix.image != 'ubuntu:16.04' + run: | + mkdir cmake.output + cd cmake.output + cmake -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache .. + cmake --build . -- -j$(nproc) + + - name: Run CMake test + if: matrix.image != 'centos:7' && matrix.image != 'ubuntu:14.04' && matrix.image != 'ubuntu:16.04' + run: | + cmake --build cmake.output --target check -- -j$(nproc) + + build_make: + + strategy: + matrix: + image: ["centos:7", "ubuntu:14.04", "ubuntu:16.04", "ubuntu:18.04", "ubuntu:22.10"] + fail-fast: false # Prefer quick result + + runs-on: ubuntu-22.04 + + container: + image: ${{ matrix.image }} + + steps: + - uses: actions/checkout@v3 + + - name: Install missing software on CentOS 7 + if: matrix.image == 'centos:7' + run: | + yum install -y gcc-c++ make which python3 pcre-devel + yum --enablerepo=extras install -y epel-release + yum install -y ccache + + - name: Install missing software on ubuntu + if: contains(matrix.image, 'ubuntu') + run: | + apt-get update + apt-get install -y g++ make python3 libxml2-utils libpcre3-dev + + # needs to be called after the package installation since + # - it doesn't call "apt-get update" + # - it doesn't support centos + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + if: matrix.image != 'ubuntu:14.04' # no support for --set-config + with: + key: ${{ github.workflow }}-${{ matrix.image }} + + - name: Build cppcheck + run: | + # "/usr/lib64" for centos / "/usr/lib" for ubuntu + export PATH="/usr/lib64/ccache:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) HAVE_RULES=yes + + - name: Build test + run: | + # "/usr/lib64" for centos / "/usr/lib" for ubuntu + export PATH="/usr/lib64/ccache:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) testrunner HAVE_RULES=yes + + - name: Run test + run: | + make -j$(nproc) check HAVE_RULES=yes + + # requires python3 + - name: Run extra tests + run: | + tools/generate_and_run_more_tests.sh + + # requires which + - name: Validate + run: | + make -j$(nproc) checkCWEEntries validateXML + + - name: Test addons + run: | + ./cppcheck --addon=threadsafety addons/test/threadsafety + ./cppcheck --addon=threadsafety --std=c++03 addons/test/threadsafety + + - name: Generate Qt help file on ubuntu 18.04 + if: false # matrix.os == 'ubuntu-18.04' + run: | + pushd gui/help + qcollectiongenerator online-help.qhcp -o online-help.qhc + diff --git a/.github/workflows/CI-unixish.yml b/.github/workflows/CI-unixish.yml new file mode 100644 index 00000000000..0c941e05756 --- /dev/null +++ b/.github/workflows/CI-unixish.yml @@ -0,0 +1,473 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: CI-unixish + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build_cmake_tinyxml2: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + env: + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Install missing software on ubuntu + if: contains(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install libxml2-utils libtinyxml2-dev qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + # pcre was removed from runner images in November 2022 + brew install coreutils qt@5 tinyxml2 pcre + + - name: CMake build on ubuntu (with GUI / system tinyxml2) + if: contains(matrix.os, 'ubuntu') + run: | + cmake -S . -B cmake.output.tinyxml2 -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_BUNDLED_TINYXML2=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + cmake --build cmake.output.tinyxml2 -- -j$(nproc) + + - name: CMake build on macos (with GUI / system tinyxml2) + if: contains(matrix.os, 'macos') + run: | + cmake -S . -B cmake.output.tinyxml2 -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_BUNDLED_TINYXML2=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DQt5_DIR=$(brew --prefix qt@5)/lib/cmake/Qt5 + cmake --build cmake.output.tinyxml2 -- -j$(nproc) + + - name: Run CMake test (system tinyxml2) + run: | + cmake --build cmake.output.tinyxml2 --target check -- -j$(nproc) + + build_cmake: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + env: + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Install missing software on ubuntu + if: contains(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install libxml2-utils qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + # pcre was removed from runner images in November 2022 + brew install coreutils qt@5 pcre + + - name: CMake build on ubuntu (with GUI) + if: contains(matrix.os, 'ubuntu') + run: | + cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + cmake --build cmake.output -- -j$(nproc) + + - name: CMake build on macos (with GUI) + if: contains(matrix.os, 'macos') + run: | + cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DQt5_DIR=$(brew --prefix qt@5)/lib/cmake/Qt5 + cmake --build cmake.output -- -j$(nproc) + + - name: Run CMake test + run: | + cmake --build cmake.output --target check -- -j$(nproc) + + - name: Run CTest + run: | + pushd cmake.output + ctest --output-on-failure -j$(nproc) + + build_uchar: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + brew install coreutils + + - name: Build with Unsigned char + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) CXXFLAGS=-funsigned-char testrunner + + - name: Test with Unsigned char + run: | + ./testrunner TestSymbolDatabase + + build_mathlib: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + brew install coreutils + + - name: Build with TEST_MATHLIB_VALUE + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) CPPFLAGS=-DTEST_MATHLIB_VALUE all + + - name: Test with TEST_MATHLIB_VALUE + run: | + make -j$(nproc) CPPFLAGS=-DTEST_MATHLIB_VALUE check + + check_nonneg: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + # coreutils contains "g++" (default is "c++") and "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + brew install coreutils + + - name: Check syntax with NONNEG + run: | + ls lib/*.cpp | xargs -n 1 -P $(nproc) g++ -fsyntax-only -std=c++0x -Ilib -Iexternals -Iexternals/picojson -Iexternals/simplecpp -Iexternals/tinyxml2 -DNONNEG + + build_qmake: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: Install missing software on ubuntu + if: contains(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install qtbase5-dev qttools5-dev libqt5charts5-dev qtchooser + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + brew install coreutils qt@5 + # expose qmake + brew link qt@5 --force + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Build GUI + run: | + export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + pushd gui + qmake CONFIG+=debug CONFIG+=ccache HAVE_QCHART=yes + make -j$(nproc) + + # TODO: binaries are in a different location on macos + - name: Build and Run GUI tests + if: contains(matrix.os, 'ubuntu') + run: | + export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + pushd gui/test/cppchecklibrarydata + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + ./test-cppchecklibrarydata + popd + pushd gui/test/filelist + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + ./test-filelist + popd + pushd gui/test/projectfile + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + ./test-projectfile + popd + pushd gui/test/translationhandler + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + # TODO: requires X session because of QApplication dependency in translationhandler.cpp + #./test-translationhandler + popd + pushd gui/test/xmlreportv2 + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + ./test-xmlreportv2 + + - name: Generate Qt help file + run: | + pushd gui/help + qhelpgenerator online-help.qhcp -o online-help.qhc + + - name: Build triage + run: | + export PATH="$(brew --prefix)/opt/ccache/libexec:/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + pushd tools/triage + qmake CONFIG+=debug CONFIG+=ccache + make -j$(nproc) + + build: + + strategy: + matrix: + os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + fail-fast: false # Prefer quick result + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Install missing software on ubuntu + if: contains(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install libxml2-utils + + # packages for strict cfg checks + - name: Install missing software on ubuntu 22.04 (cfg) + if: matrix.os == 'ubuntu-22.04' + run: | + sudo apt-get install libcairo2-dev libcurl4-openssl-dev liblua5.3-dev libssl-dev libsqlite3-dev libcppunit-dev libsigc++-2.0-dev libgtk-3-dev libboost-all-dev libwxgtk3.0-gtk3-dev xmlstarlet qtbase5-dev + + # coreutils contains "nproc" + - name: Install missing software on macos + if: contains(matrix.os, 'macos') + run: | + # pcre was removed from runner images in November 2022 + brew install coreutils python3 pcre gnu-sed + + - name: Install missing Python packages + run: | + python3 -m pip install pip --upgrade + python3 -m pip install pytest + + - name: Build cppcheck + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) HAVE_RULES=yes + + - name: Build test + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) testrunner HAVE_RULES=yes + + - name: Run test + run: | + make -j$(nproc) check HAVE_RULES=yes + + # requires "gnu-sed" installed on macos + - name: Run extra tests + run: | + tools/generate_and_run_more_tests.sh + + # do not use pushd in this step since we go below the working directory + - name: Run test/cli + run: | + cd test/cli + python3 -m pytest test-*.py + cd ../../.. + ln -s cppcheck 'cpp check' + cd 'cpp check/test/cli' + python3 -m pytest test-*.py + + - name: Run cfg tests + if: matrix.os != 'ubuntu-22.04' + run: | + make -j$(nproc) checkcfg + + - name: Run cfg tests (strict) + if: matrix.os == 'ubuntu-22.04' + run: | + make -j$(nproc) checkcfg + env: + STRICT: 1 + + - name: Run showtimetop5 tests + run: | + ./tools/test_showtimetop5.sh + + - name: Run --dump test + run: | + ./cppcheck test/testpreprocessor.cpp --dump + xmllint --noout test/testpreprocessor.cpp.dump + + - name: Validate + run: | + make -j$(nproc) checkCWEEntries validateXML + + # TODO: move to scriptcheck.yml so these are tested with all Python versions? + - name: Test addons + run: | + ./cppcheck --error-exitcode=1 --inline-suppr --addon=threadsafety addons/test/threadsafety + ./cppcheck --error-exitcode=1 --inline-suppr --addon=threadsafety --std=c++03 addons/test/threadsafety + ./cppcheck --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 addons/test/misra/misra-ctu-*-test.c + pushd addons/test + # We'll force C89 standard to enable an additional verification for + # rules 5.4 and 5.5 which have standard-dependent options. + ../../cppcheck --dump -DDUMMY --suppress=uninitvar --inline-suppr misra/misra-test.c --std=c89 --platform=unix64 + python3 ../misra.py -verify misra/misra-test.c.dump + # TODO: do we need to verify something here? + ../../cppcheck --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra/misra-test.h + ../../cppcheck --dump misra/misra-test.cpp + python3 ../misra.py -verify misra/misra-test.cpp.dump + python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_ascii.txt -verify misra/misra-test.cpp.dump + python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_utf8.txt -verify misra/misra-test.cpp.dump + python3 ../misra.py --rule-texts=misra/misra2012_rules_dummy_windows1250.txt -verify misra/misra-test.cpp.dump + ../../cppcheck --addon=misra --enable=style --platform=avr8 --error-exitcode=1 misra/misra-test-avr8.c + ../../cppcheck --dump misc-test.cpp + python3 ../misc.py -verify misc-test.cpp.dump + ../../cppcheck --dump naming_test.c + python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.c.dump + ../../cppcheck --dump naming_test.cpp + python3 ../naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump + ../../cppcheck --dump namingng_test.c + python3 ../namingng.py --configfile ../naming.json --verify namingng_test.c.dump + + - name: Ensure misra addon does not crash + if: contains(matrix.os, 'ubuntu') + run: | + ./cppcheck --addon=misra addons/test/misra/crash1.c | ( ! grep 'Bailing out from checking' ) + + - name: Build democlient + if: matrix.os == 'ubuntu-22.04' + run: | + warnings="-pedantic -Wall -Wextra -Wcast-qual -Wno-deprecated-declarations -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-shadow -Wno-missing-field-initializers -Wno-missing-braces -Wno-sign-compare -Wno-multichar" + g++ $warnings -c -Ilib -Iexternals/tinyxml2 democlient/democlient.cpp + + selfcheck: + needs: build # wait for all tests to be successful first + + runs-on: ubuntu-22.04 # run on the latest image only + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install qtbase5-dev qttools5-dev libqt5charts5-dev libboost-container-dev + + - name: Self check (build) + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + # compile with verification and ast matchers + make -j$(nproc) -s CPPFLAGS="-DCHECK_INTERNAL" CXXFLAGS="-g -O2 -DHAVE_BOOST" MATCHCOMPILER=yes VERIFY=1 + + - name: Generate UI files + run: | + pushd gui + qmake CONFIG+=debug HAVE_QCHART=yes + make -j$(nproc) compiler_uic_make_all mocables + + - name: Generate triage UI files + run: | + pushd tools/triage + qmake CONFIG+=debug + make -j$(nproc) compiler_uic_make_all mocables + + - name: Self check + run: | + selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings --check-level=exhaustive" + ec=0 + + # early exit + if [ $ec -eq 1 ]; then + exit $ec + fi + + # self check lib/cli + mkdir b1 + ./cppcheck $selfcheck_options --cppcheck-build-dir=b1 --addon=naming.json -DCHECK_INTERNAL cli lib || ec=1 + # check gui with qt settings + mkdir b2 + ./cppcheck $selfcheck_options --cppcheck-build-dir=b2 -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Igui/temp -Igui gui/*.cpp gui/temp/*.cpp || ec=1 + # self check test and tools + ./cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 + # triage + ./cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Itools/triage/temp -Igui tools/triage/*.cpp tools/triage/temp/*.cpp || ec=1 + exit $ec diff --git a/.github/workflows/CI-windows.yml b/.github/workflows/CI-windows.yml new file mode 100644 index 00000000000..4da98719ded --- /dev/null +++ b/.github/workflows/CI-windows.yml @@ -0,0 +1,205 @@ +# Some convenient links: +# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md +# + +name: CI-windows + +on: [push,pull_request] + +permissions: + contents: read + +defaults: + run: + shell: cmd + +jobs: + + build_qt: + strategy: + matrix: + os: [windows-2019, windows-2022] + qt_ver: [5.15.2, 6.2.4, 6.5.0] + fail-fast: false + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v3 + + - name: Set up Visual Studio environment + uses: ilammy/msvc-dev-cmd@v1 + with: + arch: x64 # no 32-bit Qt available + + - name: Install Qt ${{ matrix.qt_ver }} + uses: jurplel/install-qt-action@v3 + with: + version: ${{ matrix.qt_ver }} + modules: 'qtcharts' + cache: true + + - name: Build GUI release (qmake) + if: startsWith(matrix.qt_ver, '5') + run: | + cd gui || exit /b !errorlevel! + qmake HAVE_QCHART=yes || exit /b !errorlevel! + nmake release || exit /b !errorlevel! + env: + CL: /MP + + - name: Deploy GUI + if: startsWith(matrix.qt_ver, '5') + run: | + windeployqt Build\gui || exit /b !errorlevel! + del Build\gui\cppcheck-gui.ilk || exit /b !errorlevel! + del Build\gui\cppcheck-gui.pdb || exit /b !errorlevel! + + - name: Build GUI release (CMake) + if: startsWith(matrix.qt_ver, '6') + run: | + cmake -S . -B build -DBUILD_GUI=On -DWITH_QCHART=On -DUSE_QT6=On || exit /b !errorlevel! + cmake --build build --target cppcheck-gui || exit /b !errorlevel! + + # TODO: deploy with CMake/Qt6 + + build: + strategy: + matrix: + os: [windows-2019, windows-2022] + arch: [x64, x86] + fail-fast: false + + runs-on: ${{ matrix.os }} + + env: + # see https://www.pcre.org/original/changelog.txt + PCRE_VERSION: 8.45 + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: '3.11' + check-latest: true + + - name: Set up Visual Studio environment + uses: ilammy/msvc-dev-cmd@v1 + with: + arch: ${{ matrix.arch }} + + - name: Cache PCRE + id: cache-pcre + uses: actions/cache@v3 + with: + path: | + externals\pcre.h + externals\pcre.lib + externals\pcre64.lib + key: pcre-${{ env.PCRE_VERSION }}-${{ matrix.arch }}-bin-win + + - name: Download PCRE + if: steps.cache-pcre.outputs.cache-hit != 'true' + run: | + curl -fsSL https://github.com/pfultz2/pcre/archive/refs/tags/%PCRE_VERSION%.zip -o pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! + + - name: Install PCRE + if: steps.cache-pcre.outputs.cache-hit != 'true' + run: | + 7z x pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! + cd pcre-%PCRE_VERSION% || exit /b !errorlevel! + cmake . -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DPCRE_BUILD_PCRECPP=Off -DPCRE_BUILD_TESTS=Off -DPCRE_BUILD_PCREGREP=Off || exit /b !errorlevel! + nmake || exit /b !errorlevel! + copy pcre.h ..\externals || exit /b !errorlevel! + if "${{ matrix.arch }}" == "x86" ( + copy pcre.lib ..\externals\pcre.lib || exit /b !errorlevel! + ) else ( + copy pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel! + ) + env: + CL: /MP + + - name: Install missing Python packages + run: | + python -m pip install pip --upgrade || exit /b !errorlevel! + python -m pip install pytest || exit /b !errorlevel! + python -m pip install pytest-custom_exit_code || exit /b !errorlevel! + + - name: Run CMake + if: false # TODO: enable + run: | + set ARCH=${{ matrix.arch }} + if "${{ matrix.arch }}" == "x86" ( + set ARCH=Win32 + ) + cmake -S . -B build -DBUILD_TESTS=On || exit /b !errorlevel! + + - name: Build CLI debug configuration using MSBuild + run: | + set ARCH=${{ matrix.arch }} + if "${{ matrix.arch }}" == "x86" ( + set ARCH=Win32 + ) + :: cmake --build build --target check --config Debug || exit /b !errorlevel! + msbuild -m cppcheck.sln /p:Configuration=Debug-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel! + + - name: Run Debug test + run: .\bin\debug\testrunner.exe || exit /b !errorlevel! + + - name: Build CLI release configuration using MSBuild + run: | + set ARCH=${{ matrix.arch }} + if "${{ matrix.arch }}" == "x86" ( + set ARCH=Win32 + ) + :: cmake --build build --target check --config Release || exit /b !errorlevel! + msbuild -m cppcheck.sln /p:Configuration=Release-PCRE;Platform=%ARCH% -maxcpucount || exit /b !errorlevel! + + - name: Run Release test + run: .\bin\testrunner.exe || exit /b !errorlevel! + + - name: Run test/cli + run: | + :: since FILESDIR is not set copy the binary to the root so the addons are found + :: copy .\build\bin\Release\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel! + copy .\bin\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel! + copy .\bin\cppcheck-core.dll .\cppcheck-core.dll || exit /b !errorlevel! + cd test/cli || exit /b !errorlevel! + :: python -m pytest --suppress-no-test-exit-code test-clang-import.py || exit /b !errorlevel! + python -m pytest test-helloworld.py || exit /b !errorlevel! + python -m pytest test-inline-suppress.py || exit /b !errorlevel! + python -m pytest test-more-projects.py || exit /b !errorlevel! + python -m pytest test-other.py || exit /b !errorlevel! + python -m pytest test-proj2.py || exit /b !errorlevel! + python -m pytest test-suppress-syntaxError.py || exit /b !errorlevel! + + - name: Test addons + run: | + .\cppcheck --addon=threadsafety addons\test\threadsafety || exit /b !errorlevel! + .\cppcheck --addon=threadsafety --std=c++03 addons\test\threadsafety || exit /b !errorlevel! + .\cppcheck --addon=misra --enable=style --inline-suppr --enable=information --error-exitcode=1 addons\test\misra\misra-ctu-*-test.c || exit /b !errorlevel! + cd addons\test + rem We'll force C89 standard to enable an additional verification for + rem rules 5.4 and 5.5 which have standard-dependent options. + ..\..\cppcheck --dump -DDUMMY --suppress=uninitvar --inline-suppr misra\misra-test.c --std=c89 --platform=unix64 || exit /b !errorlevel! + python3 ..\misra.py -verify misra\misra-test.c.dump || exit /b !errorlevel! + rem TODO: do we need to verify something here? + ..\..\cppcheck --dump -DDUMMY --suppress=uninitvar --suppress=uninitStructMember --std=c89 misra\misra-test.h || exit /b !errorlevel! + ..\..\cppcheck --dump misra\misra-test.cpp || exit /b !errorlevel! + python3 ..\misra.py -verify misra\misra-test.cpp.dump || exit /b !errorlevel! + python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_ascii.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! + python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_utf8.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! + python3 ..\misra.py --rule-texts=misra\misra2012_rules_dummy_windows1250.txt -verify misra\misra-test.cpp.dump || exit /b !errorlevel! + ..\..\cppcheck --addon=misra --enable=style --platform=avr8 --error-exitcode=1 misra\misra-test-avr8.c || exit /b !errorlevel! + ..\..\cppcheck --dump misc-test.cpp || exit /b !errorlevel! + python3 ..\misc.py -verify misc-test.cpp.dump || exit /b !errorlevel! + ..\..\cppcheck --dump naming_test.c || exit /b !errorlevel! + rem TODO: fix this - does not fail on Linux + rem python3 ..\naming.py --var='[a-z].*' --function='[a-z].*' naming_test.c.dump || exit /b !errorlevel! + ..\..\cppcheck --dump naming_test.cpp || exit /b !errorlevel! + python3 ..\naming.py --var='[a-z].*' --function='[a-z].*' naming_test.cpp.dump || exit /b !errorlevel! + ..\..\cppcheck --dump namingng_test.c || exit /b !errorlevel! + python3 ..\namingng.py --configfile ..\naming.json --verify namingng_test.c.dump || exit /b !errorlevel! + diff --git a/.github/workflows/asan.yml b/.github/workflows/asan.yml new file mode 100644 index 00000000000..df2cb0534d4 --- /dev/null +++ b/.github/workflows/asan.yml @@ -0,0 +1,90 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: address sanitizer + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + env: + QT_VERSION: 5.15.2 + ASAN_OPTIONS: detect_stack_use_after_return=1 + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: '3.11' + check-latest: true + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev + + - name: Install clang + run: | + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 16 + + - name: Install Qt ${{ env.QT_VERSION }} + if: false + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + cache: true + + - name: CMake + run: | + cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=Off -DWITH_QCHART=Off -DUSE_MATCHCOMPILER=Verify -DANALYZE_ADDRESS=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=Off -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + env: + CC: clang-16 + CXX: clang++-16 + + - name: Build cppcheck + run: | + cmake --build cmake.output --target cppcheck -- -j $(nproc) + + - name: Build test + run: | + cmake --build cmake.output --target testrunner -- -j $(nproc) + + - name: Run tests + run: ./cmake.output/bin/testrunner + + - name: Generate dependencies + if: false + run: | + # make sure auto-generated GUI files exist + make -C cmake.output autogen + make -C cmake.output gui-build-deps triage-build-ui-deps + + # TODO: this is currently way too slow (~60 minutes) to enable it + # TODO: only fail the step on sanitizer issues - since we use processes it will only fail the underlying process which will result in an cppcheckError + - name: Self check + if: false + run: | + selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" + ec=0 + ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json cli lib || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 + exit $ec diff --git a/.github/workflows/buildman.yml b/.github/workflows/buildman.yml new file mode 100644 index 00000000000..4bbdf779661 --- /dev/null +++ b/.github/workflows/buildman.yml @@ -0,0 +1,28 @@ +name: Build manual + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + convert_via_pandoc: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - run: | + mkdir output + + - uses: docker://pandoc/latex:2.9 + with: + args: --output=output/manual.html man/manual.md + + - uses: docker://pandoc/latex:2.9 + with: + args: --output=output/manual.pdf man/manual.md + + - uses: actions/upload-artifact@v3 + with: + name: output + path: output diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml new file mode 100644 index 00000000000..19c40de61c9 --- /dev/null +++ b/.github/workflows/cifuzz.yml @@ -0,0 +1,26 @@ +name: CIFuzz +on: [pull_request] +jobs: + Fuzzing: + runs-on: ubuntu-latest + steps: + - name: Build Fuzzers + id: build + uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master + with: + oss-fuzz-project-name: 'cppcheck' + dry-run: false + language: c++ + - name: Run Fuzzers + uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master + with: + oss-fuzz-project-name: 'cppcheck' + fuzz-seconds: 300 + dry-run: false + language: c++ + - name: Upload Crash + uses: actions/upload-artifact@v3 + if: failure() && steps.build.outcome == 'success' + with: + name: artifacts + path: ./out/artifacts diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000000..12d15855527 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,47 @@ +name: "CodeQL" + +on: [push, pull_request] + +permissions: + contents: read + security-events: write + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-22.04 + + strategy: + fail-fast: false + matrix: + # Override automatic language detection by changing the below list + # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] + language: ['cpp', 'python'] + # Learn more... + # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install libxml2-utils + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + setup-python-dependencies: false + + - run: | + make -j$(nproc) HAVE_RULES=yes cppcheck + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 00000000000..b07c15811cd --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,61 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: Coverage + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ runner.os }} + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install libxml2-utils lcov + + - name: Install missing Python packages on ubuntu + run: | + python -m pip install pip --upgrade + python -m pip install lcov_cobertura + + - name: Compile instrumented + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + make -j$(nproc) all CXXFLAGS="-g -fprofile-arcs -ftest-coverage" HAVE_RULES=yes + + - name: Run instrumented tests + run: | + ./testrunner + test/cfg/runtests.sh + + - name: Generate coverage report + run: | + gcov lib/*.cpp -o lib/ + lcov --directory ./ --capture --output-file lcov_tmp.info -b ./ + lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info + genhtml lcov.info -o coverage_report --frame --legend --demangle-cpp + + - uses: actions/upload-artifact@v3 + with: + name: Coverage results + path: coverage_report + + - uses: codecov/codecov-action@v3 + with: + # token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos + # file: ./coverage.xml # optional + flags: unittests # optional + name: ${{ github.repository }} # optional + fail_ci_if_error: true # optional (default = false): diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 00000000000..ff3134b7ed5 --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,40 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: format + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - name: Cache uncrustify + uses: actions/cache@v3 + id: cache-uncrustify + with: + path: | + ~/uncrustify + key: ${{ runner.os }}-uncrustify + + - name: build uncrustify + if: steps.cache-uncrustify.outputs.cache-hit != 'true' + run: | + wget https://github.com/uncrustify/uncrustify/archive/refs/tags/uncrustify-0.72.0.tar.gz + tar xzvf uncrustify-0.72.0.tar.gz && cd uncrustify-uncrustify-0.72.0 + cmake -S . -B build -DCMAKE_BUILD_TYPE=Release + cmake --build build -- -j$(nproc) -s + mkdir ~/uncrustify + cd build && cp uncrustify ~/uncrustify/ + + - name: Uncrustify check + run: | + ~/uncrustify/uncrustify -c .uncrustify.cfg -l CPP --no-backup --replace */*.cpp */*.h + git diff + git diff | diff - /dev/null &> /dev/null diff --git a/.github/workflows/iwyu.yml b/.github/workflows/iwyu.yml new file mode 100644 index 00000000000..01c705b9da5 --- /dev/null +++ b/.github/workflows/iwyu.yml @@ -0,0 +1,149 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: include-what-you-use + +on: workflow_dispatch + +permissions: + contents: read + +jobs: + iwyu: + + runs-on: ubuntu-22.04 + + container: + image: "archlinux:latest" + + steps: + - uses: actions/checkout@v3 + + # TODO: the necessary packages are excessive - mostly because of Qt - use a pre-built image + - name: Install missing software on debian/ubuntu + if: false + run: | + apt-get update + apt-get install -y cmake g++ make libpcre3-dev + apt-get install -y qtbase5-dev qttools5-dev libqt5charts5-dev + apt-get install -y wget iwyu + ln -s ../x86_64-linux-gnu/qt5 /usr/include/qt + + - name: Install missing software on archlinux + run: | + set -x + pacman -Sy + pacman -S cmake make gcc qt5-base qt5-tools qt5-charts pcre wget --noconfirm + pacman-key --init + pacman-key --recv-key FBA220DFC880C036 --keyserver keyserver.ubuntu.com + pacman-key --lsign-key FBA220DFC880C036 + pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' --noconfirm + echo "[chaotic-aur]" >> /etc/pacman.conf + echo "Include = /etc/pacman.d/chaotic-mirrorlist" >> /etc/pacman.conf + pacman -Sy + pacman -S include-what-you-use --noconfirm + ln -s iwyu-tool /usr/sbin/iwyu_tool + + - name: Prepare CMake + run: | + cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCPPCHK_GLIBCXX_DEBUG=Off -DUSE_MATCHCOMPILER=Off + + - name: Prepare CMake dependencies + run: | + # make sure the precompiled headers exist + #make -C cmake.output/cli cmake_pch.hxx.pch + #make -C cmake.output/gui cmake_pch.hxx.pch + #make -C cmake.output/lib cmake_pch.hxx.pch + #make -C cmake.output/test cmake_pch.hxx.pch + # make sure the auto-generated GUI sources exist + make -C cmake.output autogen + # make sure the auto-generated GUI dependencies exist + make -C cmake.output gui-build-deps + make -C cmake.output triage-build-ui-deps + + - name: Build Qt mappings + run: | + wget https://raw.githubusercontent.com/include-what-you-use/include-what-you-use/master/mapgen/iwyu-mapgen-qt.py + python3 iwyu-mapgen-qt.py /usr/include/qt/ > qt5.imp + + - name: iwyu_tool + run: | + PWD=$(pwd) + iwyu_tool -p cmake.output -j $(nproc) -- -w -Xiwyu --mapping_file=$PWD/qt5.imp > iwyu.log + + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: Compilation Database + path: ./cmake.output/compile_commands.json + + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: Qt Mappings + path: ./qt5.imp + + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: Logs (include-what-you-use) + path: ./*.log + + clang-include-cleaner: + + runs-on: ubuntu-22.04 + + env: + QT_VERSION: 5.15.2 + + steps: + - uses: actions/checkout@v3 + + - name: Install missing software + run: | + sudo apt-get update + sudo apt-get install -y cmake make + sudo apt-get install -y libpcre3-dev + sudo apt-get install -y libffi7 # work around missing dependency for Qt install step + + - name: Install clang + run: | + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 17 + sudo apt-get install -y clang-tools-17 + + - name: Install Qt ${{ env.QT_VERSION }} + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + cache: true + + - name: Prepare CMake + run: | + cmake -S . -B cmake.output -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCPPCHK_GLIBCXX_DEBUG=Off -DUSE_MATCHCOMPILER=Off + env: + CC: clang-17 + CXX: clang++-17 + + - name: Prepare CMake dependencies + run: | + # make sure the precompiled headers exist + #make -C cmake.output/cli cmake_pch.hxx.pch + #make -C cmake.output/gui cmake_pch.hxx.pch + #make -C cmake.output/lib cmake_pch.hxx.pch + #make -C cmake.output/test cmake_pch.hxx.pch + # make sure the auto-generated GUI sources exist + make -C cmake.output autogen + # make sure the auto-generated GUI dependencies exist + make -C cmake.output gui-build-deps + + - name: clang-include-cleaner + run: | + # TODO: run multi-threaded + find $PWD/cli $PWD/lib $PWD/test -maxdepth 1 -name "*.cpp" | xargs -t -n 1 clang-include-cleaner-17 --print=changes --extra-arg=-w -p cmake.output > clang-include-cleaner.log 2>&1 + + - uses: actions/upload-artifact@v3 + with: + name: Logs (clang-include-cleaner) + path: ./*.log \ No newline at end of file diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml new file mode 100644 index 00000000000..ab6836c9559 --- /dev/null +++ b/.github/workflows/release-windows.yml @@ -0,0 +1,145 @@ +# Some convenient links: +# - https://github.com/actions/virtual-environments/blob/master/images/win/Windows2019-Readme.md +# + +name: release-windows + +on: + push: + tags: + - '2.*' + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +permissions: + contents: read + +defaults: + run: + shell: cmd + +jobs: + + build: + + runs-on: windows-2022 + + env: + # see https://www.pcre.org/original/changelog.txt + PCRE_VERSION: 8.45 + QT_VERSION: 5.15.2 + + steps: + - uses: actions/checkout@v3 + + - name: Set up Visual Studio environment + uses: ilammy/msvc-dev-cmd@v1 + + - name: Cache PCRE + id: cache-pcre + uses: actions/cache@v3 + with: + path: | + externals\pcre.h + externals\pcre64.lib + key: pcre-${{ env.PCRE_VERSION }}-bin-x64-win-release-job + + - name: Download PCRE + if: steps.cache-pcre.outputs.cache-hit != 'true' + run: | + curl -fsSL https://github.com/pfultz2/pcre/archive/refs/tags/%PCRE_VERSION%.zip -o pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! + + - name: Install PCRE + if: steps.cache-pcre.outputs.cache-hit != 'true' + run: | + 7z x pcre-%PCRE_VERSION%.zip || exit /b !errorlevel! + cd pcre-%PCRE_VERSION% || exit /b !errorlevel! + cmake . -G "Visual Studio 17 2022" -A x64 -DPCRE_BUILD_PCRECPP=OFF -DPCRE_BUILD_PCREGREP=OFF -DPCRE_BUILD_TESTS=OFF || exit /b !errorlevel! + msbuild -m PCRE.sln -p:Configuration=Release -p:Platform=x64 || exit /b !errorlevel! + copy pcre.h ..\externals || exit /b !errorlevel! + copy Release\pcre.lib ..\externals\pcre64.lib || exit /b !errorlevel! + + # available modules: https://github.com/miurahr/aqtinstall/blob/master/docs/getting_started.rst#installing-modules + # available tools: https://github.com/miurahr/aqtinstall/blob/master/docs/getting_started.rst#installing-tools + - name: Install Qt ${{ env.QT_VERSION }} + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + tools: 'tools_openssl_x64,qt.tools.openssl.win_x64' + cache: true + + - name: Create .qm + run: | + cd gui || exit /b !errorlevel! + lupdate gui.pro -no-obsolete || exit /b !errorlevel! + lrelease gui.pro -removeidentical || exit /b !errorlevel! + + - name: Matchcompiler + run: python tools\matchcompiler.py --write-dir lib || exit /b !errorlevel! + + - name: Build x64 release GUI + run: | + cd gui || exit /b !errorlevel! + qmake HAVE_QCHART=yes || exit /b !errorlevel! + nmake release || exit /b !errorlevel! + env: + CL: /MP + + - name: Deploy app + run: | + windeployqt Build\gui || exit /b !errorlevel! + del Build\gui\cppcheck-gui.ilk || exit /b !errorlevel! + del Build\gui\cppcheck-gui.pdb || exit /b !errorlevel! + + # TODO: build with boost enabled + - name: Build CLI x64 release configuration using MSBuild + run: msbuild -m cppcheck.sln -t:cli -p:Configuration=Release-PCRE -p:Platform=x64 || exit /b !errorlevel! + + - name: Compile misra.py executable + run: | + pip install -U pyinstaller || exit /b !errorlevel! + cd addons || exit /b !errorlevel! + pyinstaller --hidden-import xml --hidden-import xml.etree --hidden-import xml.etree.ElementTree misra.py || exit /b !errorlevel! + del *.spec || exit /b !errorlevel! + + - name: Collect files + run: | + move Build\gui win_installer\files || exit /b !errorlevel! + mkdir win_installer\files\addons || exit /b !errorlevel! + copy addons\*.* win_installer\files\addons || exit /b !errorlevel! + copy addons\dist\misra\*.* win_installer\files\addons || exit /b !errorlevel! + mkdir win_installer\files\cfg || exit /b !errorlevel! + copy cfg\*.cfg win_installer\files\cfg || exit /b !errorlevel! + :: "platforms" is a folder used by Qt as well so it already exists + :: mkdir win_installer\files\platforms || exit /b !errorlevel! + copy platforms\*.xml win_installer\files\platforms || exit /b !errorlevel! + copy bin\cppcheck.exe win_installer\files || exit /b !errorlevel! + copy bin\cppcheck-core.dll win_installer\files || exit /b !errorlevel! + mkdir win_installer\files\help || exit /b !errorlevel! + xcopy /s gui\help win_installer\files\help || exit /b !errorlevel! + del win_installer\files\translations\*.qm || exit /b !errorlevel! + move gui\*.qm win_installer\files\translations || exit /b !errorlevel! + :: copy libcrypto-1_1-x64.dll and libssl-1_1-x64.dll + copy %RUNNER_WORKSPACE%\Qt\Tools\OpenSSL\Win_x64\bin\lib*.dll win_installer\files || exit /b !errorlevel! + + - name: Build Installer + run: | + cd win_installer || exit /b !errorlevel! + REM Read ProductVersion + for /f "tokens=4 delims= " %%a in ('find "ProductVersion" productInfo.wxi') do set PRODUCTVER=%%a + REM Remove double quotes + set PRODUCTVER=%PRODUCTVER:"=% + echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel! + msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel! + + - uses: actions/upload-artifact@v3 + with: + name: installer + path: win_installer/Build/ + + - uses: actions/upload-artifact@v3 + with: + name: deploy + path: win_installer\files diff --git a/.github/workflows/selfcheck.yml b/.github/workflows/selfcheck.yml new file mode 100644 index 00000000000..8cd028f9af9 --- /dev/null +++ b/.github/workflows/selfcheck.yml @@ -0,0 +1,128 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: selfcheck + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + env: + QT_VERSION: 5.15.2 + + steps: + - uses: actions/checkout@v3 + + - name: Install missing software + run: | + sudo apt-get update + sudo apt-get install libboost-container-dev + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ runner.os }} + + - name: Install missing software + run: | + sudo apt-get update + sudo apt-get install clang-14 valgrind + + - name: Install Qt ${{ env.QT_VERSION }} + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + cache: true + + # TODO: cache this - perform same build as for the other self check + - name: Self check (build) + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + # valgrind cannot handle DWARF 5 yet so force version 4 + # work around performance regression with -inline-deferral + make -j$(nproc) -s CXXFLAGS="-O2 -w -DHAVE_BOOST -gdwarf-4 -mllvm -inline-deferral" MATCHCOMPILER=yes + env: + CC: clang-14 + CXX: clang++-14 + + - name: CMake + run: | + cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On + + - name: Generate dependencies + run: | + # make sure the precompiled headers exist + make -C cmake.output lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx + make -C cmake.output test/CMakeFiles/testrunner.dir/cmake_pch.hxx.cxx + # make sure auto-generated GUI files exist + make -C cmake.output autogen + make -C cmake.output gui-build-deps + + # TODO: find a way to report unmatched suppressions without need to add information checks + - name: Self check (unusedFunction) + if: false # TODO: fails with preprocessorErrorDirective - see #10667 + run: | + ./cppcheck -q --template=selfcheck --error-exitcode=1 --library=cppcheck-lib --library=qt -D__CPPCHECK__ -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr + env: + DISABLE_VALUEFLOW: 1 + UNUSEDFUNCTION_ONLY: 1 + + # the following steps are duplicated from above since setting up the build node in a parallel step takes longer than the actual steps + - name: CMake (no test) + run: | + cmake -S . -B cmake.output.notest -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=Off -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On + + - name: Generate dependencies (no test) + run: | + # make sure the precompiled headers exist + make -C cmake.output.notest lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx + # make sure auto-generated GUI files exist + make -C cmake.output.notest autogen + make -C cmake.output.notest gui-build-deps + + # TODO: find a way to report unmatched suppressions without need to add information checks + - name: Self check (unusedFunction / no test) + run: | + ./cppcheck -q --template=selfcheck --error-exitcode=1 --library=cppcheck-lib --library=qt -D__CPPCHECK__ -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output.notest/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr + env: + DISABLE_VALUEFLOW: 1 + UNUSEDFUNCTION_ONLY: 1 + + - name: Fetch corpus + run: | + wget https://github.com/danmar/cppcheck/archive/refs/tags/2.8.tar.gz + tar xvf 2.8.tar.gz + + - name: CMake (corpus / no test) + run: | + cmake -S cppcheck-2.8 -B cmake.output.corpus -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=Off -DBUILD_GUI=ON -DWITH_QCHART=ON -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On + + - name: Generate dependencies (corpus) + run: | + # make sure the precompiled headers exist + make -C cmake.output.notest lib/CMakeFiles/cppcheck-core.dir/cmake_pch.hxx.cxx + # make sure auto-generated GUI files exist + make -C cmake.output.corpus autogen + make -C cmake.output.corpus gui-build-deps + + # TODO: find a way to report unmatched suppressions without need to add information checks + - name: Self check (unusedFunction / corpus / no test / callgrind) + run: | + # TODO: fix -rp so the suppressions actually work + valgrind --tool=callgrind ./cppcheck --template=selfcheck --error-exitcode=0 --library=cppcheck-lib --library=qt -D__GNUC__ -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --enable=unusedFunction --exception-handling -rp=. --project=cmake.output.corpus/compile_commands.json --suppressions-list=.selfcheck_unused_suppressions --inline-suppr 2>callgrind.log || (cat callgrind.log && false) + cat callgrind.log + callgrind_annotate --auto=no > callgrind.annotated.log + head -50 callgrind.annotated.log + env: + DISABLE_VALUEFLOW: 1 + + - uses: actions/upload-artifact@v3 + with: + name: Callgrind Output + path: ./callgrind.* diff --git a/.github/workflows/tsan.yml b/.github/workflows/tsan.yml new file mode 100644 index 00000000000..fc3af112481 --- /dev/null +++ b/.github/workflows/tsan.yml @@ -0,0 +1,90 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: thread sanitizer + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + env: + QT_VERSION: 5.15.2 + TSAN_OPTIONS: halt_on_error=1 + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: '3.11' + check-latest: true + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev + + - name: Install clang + run: | + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 16 + + - name: Install Qt ${{ env.QT_VERSION }} + if: false + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + cache: true + + - name: CMake + run: | + cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=Off -DWITH_QCHART=Off -DUSE_MATCHCOMPILER=Verify -DANALYZE_THREAD=On -DUSE_THREADS=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=Off -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + env: + CC: clang-16 + CXX: clang++-16 + + - name: Build cppcheck + run: | + cmake --build cmake.output --target cppcheck -- -j $(nproc) + + - name: Build test + run: | + cmake --build cmake.output --target testrunner -- -j $(nproc) + + - name: Run tests + run: ./cmake.output/bin/testrunner + + - name: Generate dependencies + if: false + run: | + # make sure auto-generated GUI files exist + make -C cmake.output autogen + make -C cmake.output gui-build-deps triage-build-ui-deps + + # TODO: disabled for now as it takes around 40 minutes to finish + # set --error-exitcode=0 so we only fail on sanitizer issues - since it uses threads for execution it will exit the whole process on the first issue + - name: Self check + if: false + run: | + selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=0 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" + ec=0 + ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json -DCHECK_INTERNAL cli lib || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 + exit $ec diff --git a/.github/workflows/ubsan.yml b/.github/workflows/ubsan.yml new file mode 100644 index 00000000000..1de89f66ff5 --- /dev/null +++ b/.github/workflows/ubsan.yml @@ -0,0 +1,86 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: undefined behaviour sanitizers + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + env: + QT_VERSION: 5.15.2 + UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1:report_error_type=1 + # TODO: figure out why there are cache misses with PCH enabled + CCACHE_SLOPPINESS: pch_defines,time_macros + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }} + + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: '3.11' + check-latest: true + + - name: Install missing software on ubuntu + run: | + sudo apt-get update + sudo apt-get install -y cmake make libpcre3-dev libboost-container-dev + + - name: Install clang + run: | + wget https://apt.llvm.org/llvm.sh + chmod +x llvm.sh + sudo ./llvm.sh 16 + + - name: Install Qt ${{ env.QT_VERSION }} + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + modules: 'qtcharts' + cache: true + + - name: CMake + run: | + cmake -S . -B cmake.output -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=ON -DWITH_QCHART=ON -DUSE_MATCHCOMPILER=Verify -DANALYZE_UNDEFINED=On -DENABLE_CHECK_INTERNAL=On -DUSE_BOOST=On -DCPPCHK_GLIBCXX_DEBUG=Off -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DDISABLE_DMAKE=On -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache + env: + CC: clang-16 + CXX: clang++-16 + + - name: Build cppcheck + run: | + cmake --build cmake.output --target cppcheck -- -j $(nproc) + + - name: Build test + run: | + cmake --build cmake.output --target testrunner -- -j $(nproc) + + - name: Run tests + run: ./cmake.output/bin/testrunner + + - name: Generate dependencies + run: | + # make sure auto-generated GUI files exist + make -C cmake.output autogen + make -C cmake.output gui-build-deps triage-build-ui-deps + + # TODO: only fail the step on sanitizer issues - since we use processes it will only fail the underlying process which will result in an cppcheckError + - name: Self check + run: | + selfcheck_options="-q -j$(nproc) --std=c++11 --template=selfcheck --showtime=top5 -D__CPPCHECK__ -DCHECK_INTERNAL -DHAVE_RULES --error-exitcode=1 --inline-suppr --suppressions-list=.selfcheck_suppressions --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml2/ --inconclusive --enable=style,performance,portability,warning,missingInclude,internal --exception-handling --debug-warnings" + ec=0 + ./cmake.output/bin/cppcheck $selfcheck_options --addon=naming.json cli lib || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQT_VERSION=0x050000 -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt --addon=naming.json -Icmake.output/gui -Igui gui/*.cpp cmake.output/gui/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -Icli test/*.cpp tools/*.cpp || ec=1 + ./cmake.output/bin/cppcheck $selfcheck_options -DQ_MOC_OUTPUT_REVISION=67 -DQT_CHARTS_LIB --library=qt -Icmake.output/tools/triage -Igui tools/triage/*.cpp cmake.output/tools/triage/*.cpp || ec=1 + exit $ec diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml new file mode 100644 index 00000000000..1753e6f0acd --- /dev/null +++ b/.github/workflows/valgrind.yml @@ -0,0 +1,54 @@ +# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions +# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners +name: valgrind + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - name: ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }}-${{ runner.os }} + + - name: Install missing software + run: | + sudo apt-get update + sudo apt-get install libxml2-utils + sudo apt-get install valgrind + sudo apt-get install libboost-container-dev + sudo apt-get install debuginfod + + - name: Build cppcheck + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + CXXFLAGS="-O1 -g -DHAVE_BOOST" make -j$(nproc) HAVE_RULES=yes MATCHCOMPILER=yes + + - name: Build test + run: | + export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" + CXXFLAGS="-O1 -g -DHAVE_BOOST" make -j$(nproc) testrunner HAVE_RULES=yes MATCHCOMPILER=yes + + - name: Run valgrind + run: | + ec=0 + valgrind --error-limit=yes --leak-check=full --num-callers=50 --show-reachable=yes --track-origins=yes --suppressions=valgrind/testrunner.supp --gen-suppressions=all --log-fd=9 --error-exitcode=42 ./testrunner TestGarbage TestOther TestSimplifyTemplate 9>memcheck.log || ec=1 + cat memcheck.log + exit $ec + env: + DEBUGINFOD_URLS: https://debuginfod.ubuntu.com + + - uses: actions/upload-artifact@v3 + if: success() || failure() + with: + name: Logs + path: ./*.log From bc529bc13e3397fcaad00fe8f07877e2082a83f5 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 16:14:15 +0200 Subject: [PATCH 13/15] Format --- lib/astutils.cpp | 10 +++++----- lib/checkexceptionsafety.cpp | 2 +- lib/checkio.cpp | 4 ++-- lib/checkother.cpp | 2 +- lib/checkuninitvar.cpp | 14 +++++++------- lib/programmemory.cpp | 6 +++--- lib/symboldatabase.cpp | 2 +- lib/templatesimplifier.cpp | 4 ++-- lib/valueflow.cpp | 8 ++++---- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index dc017427f6b..fe18ecd59cd 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -1903,7 +1903,7 @@ bool isConstFunctionCall(const Token* ftok, const Library& library) } return false; } - if (f->argumentList.empty()) + if (f->argumentList.empty()) return f->isConstexpr(); } else if (Token::Match(ftok->previous(), ". %name% (") && ftok->previous()->originalName() != "->" && astIsSmartPointer(ftok->previous()->astOperand1())) { @@ -2527,10 +2527,10 @@ bool isVariableChanged(const Token *tok, int indirect, const Settings *settings, return isVariableChanged(ftok->next(), indirect, settings, cpp, depth - 1); } if (contains({Library::Container::Yield::BUFFER, - Library::Container::Yield::BUFFER_NT, - Library::Container::Yield::START_ITERATOR, - Library::Container::Yield::ITERATOR}, - yield)) { + Library::Container::Yield::BUFFER_NT, + Library::Container::Yield::START_ITERATOR, + Library::Container::Yield::ITERATOR}, + yield)) { return isVariableChanged(ftok->next(), indirect + 1, settings, cpp, depth - 1); } if (contains({Library::Container::Yield::SIZE, diff --git a/lib/checkexceptionsafety.cpp b/lib/checkexceptionsafety.cpp index 14b83e0057a..5a6b233e983 100644 --- a/lib/checkexceptionsafety.cpp +++ b/lib/checkexceptionsafety.cpp @@ -254,7 +254,7 @@ static const Token * functionThrowsRecursive(const Function * function, std::set if (called->isThrow() && called->throwArg) return tok; if (called->isNoExcept() && called->noexceptArg && - called->noexceptArg->str() != "true") + called->noexceptArg->str() != "true") return tok; if (functionThrowsRecursive(called, recursive)) return tok; diff --git a/lib/checkio.cpp b/lib/checkio.cpp index 3af25d24724..2a0fdc4d483 100644 --- a/lib/checkio.cpp +++ b/lib/checkio.cpp @@ -488,7 +488,7 @@ static bool findFormat(nonneg int arg, const Token *firstArg, *formatArgTok = argTok->nextArgument(); *formatStringTok = argTok; return true; - } + } if (Token::Match(argTok, "%var% [,)]") && argTok->variable() && Token::Match(argTok->variable()->typeStartToken(), "char|wchar_t") && @@ -1473,7 +1473,7 @@ CheckIO::ArgumentInfo::ArgumentInfo(const Token * arg, const Settings *settings, } else varTok = tok1->previous(); break; - } + } if (tok1->str() == "(" || tok1->str() == "{" || tok1->str() == "[") tok1 = tok1->link(); else if (tok1->link() && tok1->str() == "<") diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 9c367720ba4..121ae89b728 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -915,7 +915,7 @@ void CheckOther::checkVariableScope() if (tok->str() == "(") { forHead = true; break; - } + } if (Token::Match(tok, "[;{}]")) break; } diff --git a/lib/checkuninitvar.cpp b/lib/checkuninitvar.cpp index 6dd9637e388..56874d560f2 100644 --- a/lib/checkuninitvar.cpp +++ b/lib/checkuninitvar.cpp @@ -1486,17 +1486,17 @@ bool CheckUninitVar::isMemberVariableUsage(const Token *tok, bool isPointer, All // = *(&var); if (!isPointer && - Token::simpleMatch(tok->astParent(),"&") && - Token::simpleMatch(tok->astParent()->astParent(),"*") && - Token::Match(tok->astParent()->astParent()->astParent(), "= * (| &") && - tok->astParent()->astParent()->astParent()->astOperand2() == tok->astParent()->astParent()) + Token::simpleMatch(tok->astParent(),"&") && + Token::simpleMatch(tok->astParent()->astParent(),"*") && + Token::Match(tok->astParent()->astParent()->astParent(), "= * (| &") && + tok->astParent()->astParent()->astParent()->astOperand2() == tok->astParent()->astParent()) return true; // TODO: this used to be experimental - enable or remove see #5586 if ((false) && // NOLINT(readability-simplify-boolean-expr) - !isPointer && - Token::Match(tok->tokAt(-2), "[(,] & %name% [,)]") && - isVariableUsage(tok, isPointer, alloc)) + !isPointer && + Token::Match(tok->tokAt(-2), "[(,] & %name% [,)]") && + isVariableUsage(tok, isPointer, alloc)) return true; return false; diff --git a/lib/programmemory.cpp b/lib/programmemory.cpp index 08fc8f4531a..8119d6fc1c8 100644 --- a/lib/programmemory.cpp +++ b/lib/programmemory.cpp @@ -1164,9 +1164,9 @@ static ValueFlow::Value executeImpl(const Token* expr, ProgramMemory& pm, const if (expr->hasKnownIntValue() && !expr->isAssignmentOp() && expr->str() != ",") return expr->values().front(); if ((value = expr->getKnownValue(ValueFlow::Value::ValueType::FLOAT)) || - (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_START)) || - (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_END)) || - (value = expr->getKnownValue(ValueFlow::Value::ValueType::CONTAINER_SIZE))) { + (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_START)) || + (value = expr->getKnownValue(ValueFlow::Value::ValueType::ITERATOR_END)) || + (value = expr->getKnownValue(ValueFlow::Value::ValueType::CONTAINER_SIZE))) { return *value; } if (expr->isNumber()) { diff --git a/lib/symboldatabase.cpp b/lib/symboldatabase.cpp index 731953ebed7..c07c48e2eca 100644 --- a/lib/symboldatabase.cpp +++ b/lib/symboldatabase.cpp @@ -5690,7 +5690,7 @@ const Function* SymbolDatabase::findFunction(const Token* const tok) const if (tok1 && tok1->valueType() && tok1->valueType()->typeScope) return tok1->valueType()->typeScope->findFunction(tok, tok1->valueType()->constness == 1); if (tok1 && Token::Match(tok1->previous(), "%name% (") && tok1->previous()->function() && - tok1->previous()->function()->retDef) { + tok1->previous()->function()->retDef) { ValueType vt = ValueType::parseDecl(tok1->previous()->function()->retDef, mSettings, mIsCpp); if (vt.typeScope) return vt.typeScope->findFunction(tok, vt.constness == 1); diff --git a/lib/templatesimplifier.cpp b/lib/templatesimplifier.cpp index 13875f68039..3ff539ae067 100644 --- a/lib/templatesimplifier.cpp +++ b/lib/templatesimplifier.cpp @@ -2156,8 +2156,8 @@ void TemplateSimplifier::expandTemplate( continue; } if (!templateDeclaration.scope().empty() && - !alreadyHasNamespace(templateDeclaration, tok3) && - !Token::Match(closingBracket->next(), "(|::")) { + !alreadyHasNamespace(templateDeclaration, tok3) && + !Token::Match(closingBracket->next(), "(|::")) { if (copy) addNamespace(templateDeclaration, tok3); } diff --git a/lib/valueflow.cpp b/lib/valueflow.cpp index 8a080d85201..fa5937a502c 100644 --- a/lib/valueflow.cpp +++ b/lib/valueflow.cpp @@ -2493,7 +2493,7 @@ struct ValueFlowAnalyzer : Analyzer { result.dependent = false; result.unknown = false; return result; - } + } if (Token::Match(tok, "%cop%")) { if (isLikelyStream(isCPP(), tok->astOperand1())) { result.dependent = false; @@ -3104,7 +3104,7 @@ struct SingleValueFlowAnalyzer : ValueFlowAnalyzer { if (scope->type == Scope::eLambda) return value.isLifetimeValue(); if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || - scope->type == Scope::eFor) { + scope->type == Scope::eFor) { if (value.isKnown() || value.isImpossible()) return true; if (value.isLifetimeValue()) @@ -4869,7 +4869,7 @@ static void valueFlowLifetime(TokenList *tokenlist, SymbolDatabase* /*db*/, Erro if (var->isArgument()) return false; return exprDependsOnThis(tok2); - } + } if (Token::simpleMatch(tok2, "(")) return exprDependsOnThis(tok2); return false; @@ -7284,7 +7284,7 @@ struct MultiValueFlowAnalyzer : ValueFlowAnalyzer { }); } if (scope->type == Scope::eIf || scope->type == Scope::eElse || scope->type == Scope::eWhile || - scope->type == Scope::eFor) { + scope->type == Scope::eFor) { auto pred = [](const ValueFlow::Value& value) { if (value.isKnown()) return true; From c45556af8fe6babfb994e7df2467e46c49c37863 Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 17:34:53 +0200 Subject: [PATCH 14/15] Format --- lib/astutils.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index fe18ecd59cd..942af269643 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -2530,13 +2530,13 @@ bool isVariableChanged(const Token *tok, int indirect, const Settings *settings, Library::Container::Yield::BUFFER_NT, Library::Container::Yield::START_ITERATOR, Library::Container::Yield::ITERATOR}, - yield)) { + yield)) { return isVariableChanged(ftok->next(), indirect + 1, settings, cpp, depth - 1); } if (contains({Library::Container::Yield::SIZE, - Library::Container::Yield::EMPTY, - Library::Container::Yield::END_ITERATOR}, - yield)) { + Library::Container::Yield::EMPTY, + Library::Container::Yield::END_ITERATOR}, + yield)) { return false; } } From 1741a84a34d4adeae944c0cc94ce39aa027ed5ad Mon Sep 17 00:00:00 2001 From: chrchr Date: Tue, 20 Jun 2023 17:53:17 +0200 Subject: [PATCH 15/15] Format --- lib/astutils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index 942af269643..20d36c54ce7 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -2523,16 +2523,16 @@ bool isVariableChanged(const Token *tok, int indirect, const Settings *settings, return true; const Library::Container::Yield yield = c->getYield(ftok->str()); // If accessing element check if the element is changed - if (contains({Library::Container::Yield::ITEM, Library::Container::Yield::AT_INDEX}, yield)) { + if (contains({Library::Container::Yield::ITEM, Library::Container::Yield::AT_INDEX}, yield)) return isVariableChanged(ftok->next(), indirect, settings, cpp, depth - 1); - } + if (contains({Library::Container::Yield::BUFFER, Library::Container::Yield::BUFFER_NT, Library::Container::Yield::START_ITERATOR, Library::Container::Yield::ITERATOR}, yield)) { return isVariableChanged(ftok->next(), indirect + 1, settings, cpp, depth - 1); - } + } if (contains({Library::Container::Yield::SIZE, Library::Container::Yield::EMPTY, Library::Container::Yield::END_ITERATOR},