Fix bug ruby sig test 09/6809/1
authorboucherv <valentin.boucher@orange.com>
Fri, 15 Jan 2016 09:13:44 +0000 (10:13 +0100)
committerMorgan Richomme <morgan.richomme@orange.com>
Fri, 15 Jan 2016 09:51:38 +0000 (09:51 +0000)
Change-Id: Ieb908e7af2365381ad576a3da9a0787f96c9efe2
Signed-off-by: boucherv <valentin.boucher@orange.com>
(cherry picked from commit dee9be014293503645069ff6796f5231b3f7ae48)

docker/Dockerfile
testcases/config_functest.py

index 4a2d87b..69c2bd4 100644 (file)
@@ -74,4 +74,3 @@ ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img /home/op
 
 RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
 RUN curl -L https://get.rvm.io | bash -s stable
-RUN bash -c 'source /etc/profile.d/rvm.sh ; rvm autolibs enable ; rvm install 1.9.3 ; rvm use 1.9.3'
index 19d894f..c2e8737 100755 (executable)
@@ -115,10 +115,13 @@ def action_start():
             action_clean()
             exit(-1)
 
+        logger.info("Installing Ruby libraries for vIMS testcase...")
         # Install ruby libraries for vims test-case
         script = 'source /etc/profile.d/rvm.sh; '
         script += 'cd ' + VIMS_TEST_DIR + '; '
-        script += 'rvm use system;'
+        script += 'rvm autolibs enable ;'
+        script += 'rvm install 1.9.3; '
+        script += 'rvm use 1.9.3;'
         script += 'bundle install'
 
         cmd = "/bin/bash -c '" + script + "'"