#!/bin/bash
# 测试套管理工具

TST_TS_TOPDIR="/opt/virt-tools-set/container/tst-cgroup"
export TST_TS_TOPDIR

if [ -f "$TST_TS_TOPDIR/tst_common/lib/tsuite_func.sh" ]; then
    source "$TST_TS_TOPDIR/tst_common/lib/tsuite_func.sh"
else
    echo "can't find the tsuite_func.sh file"
    exit 1
fi

tsuite_main "$@"
