mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-24 11:22:09 +00:00
Too much to list all, but includes (in no particular order): - Cleanup for 64-bit builds, MSVC warnings. - Structured help - Help file compiler. - Supports volsets, writes/create work. - Support for I18n in messages, help. - Makefiles. - Initialize volume/volset - Command line editing/history Builds and works on Linux and Windows (VS). Not recently built or tested on other platforms, but not intentinonally broken.
19 lines
496 B
Bash
Executable File
19 lines
496 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run ods2 with listed arguments
|
|
PROG=./ods2
|
|
#
|
|
# Save valgrind output in grind.txt~ for analysis
|
|
# Display full output on TTY
|
|
# Merge rules in suppress.txt~ with output, creating newsuppress.txt~
|
|
|
|
touch suppress.txt~
|
|
valgrind --gen-suppressions=all \
|
|
--show-leak-kinds=all \
|
|
--leak-check=full \
|
|
--num-callers=30 \
|
|
$PROG "$@" \
|
|
3>&1 1>&2 2>&3 | tee /dev/stderr grind.txt~ | \
|
|
grindmerge -f suppress.txt~ >newsuppress.txt~
|
|
|