Message ID | 20170616175704.7832-16-anthony.perard@citrix.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Anthony PERARD writes ("[OSSTEST PATCH v11 15/20] ts-openstack-tempest: Fix tempest invocation"): > ./run_tempest.sh is deprecated. ... > target_cmd($ho, <<END, 7200); > set -e > -$builddir/tempest/run_tempest.sh --virtual-env -- --concurrency=2 '$regex' > +cd $builddir/tempest > +tempest run --concurrency=2 --regex '$regex' Has /usr/local/bin/tempest or something been created by ts-openstay-deploy, then ? If so, Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Otherwise I wonder how this works, since I don't see how `tempest' would be on PATH. Ian.
On Fri, Jun 23, 2017 at 02:45:12PM +0100, Ian Jackson wrote: > Anthony PERARD writes ("[OSSTEST PATCH v11 15/20] ts-openstack-tempest: Fix tempest invocation"): > > ./run_tempest.sh is deprecated. > ... > > target_cmd($ho, <<END, 7200); > > set -e > > -$builddir/tempest/run_tempest.sh --virtual-env -- --concurrency=2 '$regex' > > +cd $builddir/tempest > > +tempest run --concurrency=2 --regex '$regex' > > Has /usr/local/bin/tempest or something been created by > ts-openstay-deploy, then ? Yes. > If so, > > Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> > > Otherwise I wonder how this works, since I don't see how `tempest' > would be on PATH. > > Ian.
diff --git a/ts-openstack-tempest b/ts-openstack-tempest index 82e9a71..b95043a 100755 --- a/ts-openstack-tempest +++ b/ts-openstack-tempest @@ -58,7 +58,8 @@ sub tempest() { target_cmd($ho, <<END, 7200); set -e -$builddir/tempest/run_tempest.sh --virtual-env -- --concurrency=2 '$regex' +cd $builddir/tempest +tempest run --concurrency=2 --regex '$regex' END }
./run_tempest.sh is deprecated. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- ts-openstack-tempest | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)