#!/bin/bash | |
# ----------------------------------------------------------------------------- | |
# Packages ONOS test facilities into onos-test.tar.gz | |
# ----------------------------------------------------------------------------- | |
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 | |
cd $ONOS_ROOT && onos-buck build //:onos-test --show-output | |
exit $? |