2017-09-07 16:51:02 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# You can find calltool at https://gitweb.torproject.org/user/nickm/calltool.git
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if test "x$CALLTOOL_PATH" != "x"; then
|
|
|
|
PYTHONPATH="${CALLTOOL_PATH}:${PYTHONPATH}"
|
|
|
|
export PYTHONPATH
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p callgraph
|
|
|
|
|
2017-09-07 17:03:22 +02:00
|
|
|
SUBITEMS="fn_graph fn_invgraph fn_scc fn_scc_weaklinks module_graph module_invgraph module_scc module_scc_weaklinks"
|
2017-09-07 16:51:02 +02:00
|
|
|
|
|
|
|
for calculation in $SUBITEMS; do
|
|
|
|
echo "======== $calculation"
|
2018-10-29 10:31:03 +01:00
|
|
|
python -m calltool "$calculation" > callgraph/"$calculation"
|
2017-09-07 16:51:02 +02:00
|
|
|
done
|
|
|
|
|
2018-10-29 10:37:16 +01:00
|
|
|
cat <<EOF > callgraph/README
|
2017-09-07 16:51:02 +02:00
|
|
|
This directory holds output from calltool, as run on Tor. For more
|
|
|
|
information about each of these files, see the NOTES and README files in
|
|
|
|
the calltool distribution.
|
|
|
|
|
|
|
|
You can find calltool at
|
|
|
|
https://gitweb.torproject.org/user/nickm/calltool.git
|
|
|
|
EOF
|
|
|
|
|