This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# TODO: set -e | |
set -x | |
# TODO: check parameters | |
hash_good=$1 | |
hash_bad=$2 | |
options=$3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 = [] |