| # ----------------------------------------------------------------------------- |
| # Packages ONOS test facilities into onos-test.tar.gz |
| # ----------------------------------------------------------------------------- |
| [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| . $ONOS_ROOT/tools/build/envDefaults |
| rm -fr $ONOS_TEST_STAGE # Remove this when package script is completed |
| # Create the stage directory and warp into it |
| mkdir -p $ONOS_TEST_STAGE/tools/test \ |
| $ONOS_TEST_STAGE/tools/dev \ |
| $ONOS_TEST_STAGE/tools/build \ |
| $ONOS_TEST_STAGE/tools/package/config |
| cp -r $ONOS_ROOT/tools/test $ONOS_TEST_STAGE/tools |
| cp $ONOS_ROOT/tools/dev/bash_profile $ONOS_TEST_STAGE/tools/dev |
| cp $ONOS_ROOT/tools/build/envDefaults $ONOS_TEST_STAGE/tools/build |
| # Now package up the ONOS test tools tar file |
| COPYFILE_DISABLE=1 tar zcf $ONOS_TEST_TAR $ONOS_TEST_BITS |