blob: 610c17eaf54ef972e430a09d603e338258ba7e91 [file] [log] [blame]
azvyagintsevf19ddc82018-02-20 18:39:32 +02001#!/bin/bash
2
3set -xe
4
5function _info(){
sandriichenko9d2eb112018-06-06 17:36:50 +03006 echo -e "=== INFO: PIKE"
sandriichenko3a043ca2018-06-15 11:08:36 +03007 cat /etc/build_timestamp || true
azvyagintsevf19ddc82018-02-20 18:39:32 +02008 set +x
9 echo -e "=== INFO: tempest version:"
10 tempest --version
11 echo -e "=== INFO: installed plugins:"
12 tempest list-plugins
13 echo -e "=== INFO: tempest pip's:"
14 pip freeze |grep -i tempest | sort
15 echo -e "============================"
16 set -x
17}
18
19_info
20exec "$@"