mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2026-01-27 02:22:02 +00:00
17 lines
432 B
Bash
Executable File
17 lines
432 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright © 2022 Broadcom. All rights reserved. The term "Broadcom"
|
|
# refers solely to the Broadcom Inc. corporate affiliate that owns
|
|
# the software below. This work is licensed under the OpenAFC Project License,
|
|
# a copy of which is included with this software program
|
|
set -x
|
|
hostname
|
|
wd=${1}
|
|
TAG=${2}
|
|
export TAG
|
|
cd $wd/tests/regression_${TAG}
|
|
docker ps -a
|
|
docker-compose logs
|
|
docker-compose down -v
|
|
docker ps -a
|