BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
1f85c99
Branches
Tags
master
uproctrace
tests
trace_build
trace_build.bash
implement upt-trace wrapper
Stefan Schuermans
commited
1f85c99
at 2020-05-22 13:32:43
trace_build.bash
Blame
History
Raw
#! /bin/bash set -eux -o pipefail if (( $# < 2 )) then echo "usage: $0 <SOURCE_DIR> <UPT_HOME>" >&2 exit 2 fi SOURCE_DIR="$(readlink -f "$1")" UPT_HOME="$(readlink -f "$2")" SCRIPT_DIR="$(dirname "$0")" rm -rf out.proto build "$UPT_HOME/bin/upt-trace" out.proto "$SCRIPT_DIR/run_build.bash" "$SOURCE_DIR" ls -l out.proto "$UPT_HOME/dump/dump.py" out.proto | tee out.dump grep -A 1 '^ *cmdline {$' out.dump | grep '^ *s: "mkdir"$' grep '^ *s: "proc_begin.c"$' out.dump grep '^ *s: "libuptpl.so"$' out.dump