summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorHiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp>2015-04-14 18:27:06 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-04-16 15:39:54 +0900
commit16b9b40db28d31b92a56b42b37dec88f9d8e882c (patch)
tree89fbc9223113d5636496923e951b66e4d0726b2c /test
parentbed532f80043f9004431ee5b72abdab1c2755002 (diff)
scenario_test: fix README along with layout change
Diffstat (limited to 'test')
-rw-r--r--test/scenario_test/README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/scenario_test/README.md b/test/scenario_test/README.md
index 0c30c7d0..5a8cc5e7 100644
--- a/test/scenario_test/README.md
+++ b/test/scenario_test/README.md
@@ -8,17 +8,21 @@ and install golang environment inside the VM.
Setup
-----
-Execute the following commands on a python inside the VM:
+Execute the following commands inside the VM:
install the python packages and libraries required to run the test program and clone gobgp repository.
```
% sudo su -
+# apt-get update
+# apt-get install git
# apt-get install python-pip
# apt-get install python-dev
# git clone https://github.com/osrg/gobgp.git
# cd ./gobgp
+# GOBGP_DIR=`pwd`
+# cd $GOBGP_DIR/gobgpd
# go get -v
-# cd ./test/scenario_test
+# cd $GOBGP_DIR/test/scenario_test
# pip install -r pip-requires.txt
```