Skip to content

Instantly share code, notes, and snippets.

@firewave
firewave / bisect.sh
Created February 9, 2022 22:06
Cppcheck Hang Bisect
#!/bin/sh
# TODO: set -e
set -x
# TODO: check parameters
hash_good=$1
hash_bad=$2
options=$3
@firewave
firewave / diff.py
Last active February 11, 2022 16:33
Cppcheck version compare
#!/usr/bin/env python
import os.path
import subprocess
from distutils.version import StrictVersion
input_file = 's:/___temp/input.cpp'
directory = 'c:/Apps/cppcheck_versions'
versions = []