Add post_test_hook.sh

Add post test hook so that we can collect the
lxd logs after tempest has finished.

Change-Id: Id2aa1171359eef0b27ef993da79e0bf4cc4d577f
Signed-off-by: Chuck Short <chuck.short@canonical.com>
This commit is contained in:
Chuck Short 2016-10-14 14:03:22 -04:00
parent 2cbedc1f60
commit 22fa52a8a5
1 changed files with 25 additions and 0 deletions

25
contrib/ci/post_test_hook.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash -xe
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# This script is executed inside post_test function in devstack gate.
source $BASE/new/devstack/functions
INSTALLDIR=${INSTALLDIR:-/opt/stack}
source $INSTALLDIR/devstack/functions-common
LOGDIR=/opt/stack/logs
# Collect logs from the containers
sudo mkdir -p $LOGDIR/containers/
cp -rp /var/log/lxd/* $LOGDIR/containers