6daac0f60c
* Initial python support
* Add python testing
* Increase timeout for bin tests
* cmake-format
* Valid build types + testing + formatting + more
- Enforce valid build types
- Fix to numpy install
- Increase testing timeout
- Fix to cmake format glob
- Fix to backtrace verbose
* Disable stripping libraries by default
* omnitrace exe updates
- new '--print-instructions' option
- changed format of instructions in JSON
- remove no-save-fpr tests
* Default to strip libraries when release build
[ROCm/rocprofiler-systems commit: afa3edebab]
18 خطوط
423 B
Bash
Executable File
18 خطوط
423 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export PYTHONPATH=$(cd $(dirname ${BASH_SOURCE[0]})/../@CMAKE_INSTALL_PYTHONDIR@ && pwd):${PYTHONPATH}
|
|
|
|
: ${PYTHON_EXECUTABLE:=@PYTHON_EXECUTABLE@}
|
|
|
|
if [ ! -f ${PYTHON_EXECUTABLE} ]; then PYTHON_EXECUTABLE=$(basename ${PYTHON_EXECUTABLE}); fi
|
|
|
|
set -e
|
|
|
|
run-script()
|
|
{
|
|
echo -e "\n##### omnitrace :: executing '${@}'... #####\n"
|
|
eval $@
|
|
}
|
|
|
|
run-script ${PYTHON_EXECUTABLE} -m @SCRIPT_SUBMODULE@ $@
|