URL: https://github.com/SSSD/sssd/pull/751
Author: alexey-tikhonov
 Title: #751: TESTS: fixed bug in guests startup function
Action: opened

PR body:
"""
`start-guest()` function always started `client` machine ignoring supplied 
argument.
"""

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/751/head:pr751
git checkout pr751
From b480afc2e1f83796b8a58f483f83c8b4cf47b606 Mon Sep 17 00:00:00 2001
From: Alexey Tikhonov <atikh...@redhat.com>
Date: Thu, 14 Feb 2019 10:47:57 +0100
Subject: [PATCH] TESTS: fixed bug in guests startup function

`start-guest()` function always started `client` machine ignoring
supplied argument.
---
 contrib/test-suite/run.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/test-suite/run.sh b/contrib/test-suite/run.sh
index c40d94a371..bb4c06f59e 100755
--- a/contrib/test-suite/run.sh
+++ b/contrib/test-suite/run.sh
@@ -65,10 +65,10 @@ start-guest() {
     # This may fail if guest's box was not yet downloaded. We will ignore it.
     run-vagrant destroy $1 &> /dev/null
 
-    run-vagrant box update client
+    run-vagrant box update $1
     success-or-die $? "Unable to update guest: $1"
 
-    run-vagrant up client
+    run-vagrant up $1
     success-or-die $? "Unable to start guest: $1"
 }
 
_______________________________________________
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org

Reply via email to