diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-30 15:18:43 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-04-17 23:05:59 +0900 |
commit | 47ab84e34caeb7c89b26271bf84959011bc8ed19 (patch) | |
tree | 593380c833af9adbb14e2abf0a27337faf7b77f4 /test/scenario_test/README.md | |
parent | 616ae9f2cd960e9e7b49bbceee4a0424806b8ef2 (diff) |
test/lib/gobgp: Use local GoBGP executables in contaier
Currently, to reflect the modification of the local source code or to
switch the base image for GoBGP container, it is required to re-build
the GoBGP container image, and this take a long time to test or debug
with the scenario tests.
This patch fixes to use the local GoBGP executables (gobgp and gobgpd)
in container, and enables to reflect the changes without rebuidling
container image.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/scenario_test/README.md')
-rw-r--r-- | test/scenario_test/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/scenario_test/README.md b/test/scenario_test/README.md index f8d1364e..5663d936 100644 --- a/test/scenario_test/README.md +++ b/test/scenario_test/README.md @@ -77,7 +77,8 @@ You also need this operation at every modification to the source code. ```shell $ cd $GOPATH/src/github.com/osrg/gobgp -$ sudo fab -f ./test/lib/base.py make_gobgp_ctn --set tag=gobgp +$ go install ./gobgp/ +$ go install ./gobgpd/ ``` ## <a name="section3"> Run test |