<feed xmlns='http://www.w3.org/2005/Atom'>
<title>glusto-tests.git/tests/functional/samba, branch master</title>
<subtitle>[no description]</subtitle>
<link rel='alternate' type='text/html' href='http://git.gluster.org/cgit/glusto-tests.git/'/>
<entry>
<title>[Testfix] Remove python version dependency(Part 3)</title>
<updated>2020-02-26T06:01:04+00:00</updated>
<author>
<name>kshithijiyer</name>
<email>kshithij.ki@gmail.com</email>
</author>
<published>2020-02-20T06:55:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.gluster.org/cgit/glusto-tests.git/commit/?id=3e6d5bdc8c45ac3b726ca3b7237e43194805cc56'/>
<id>3e6d5bdc8c45ac3b726ca3b7237e43194805cc56</id>
<content type='text'>
Please refer to commit message of patch [1].
[1] https://review.gluster.org/#/c/glusto-tests/+/24140/

Change-Id: Ib357d5690bb28131d788073b80a088647167fe80
Signed-off-by: kshithijiyer &lt;kshithij.ki@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Please refer to commit message of patch [1].
[1] https://review.gluster.org/#/c/glusto-tests/+/24140/

Change-Id: Ib357d5690bb28131d788073b80a088647167fe80
Signed-off-by: kshithijiyer &lt;kshithij.ki@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[Fix] Remove variable script_local_path(Part 1)</title>
<updated>2020-01-07T12:11:31+00:00</updated>
<author>
<name>kshithijiyer</name>
<email>kshithij.ki@gmail.com</email>
</author>
<published>2019-12-19T06:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.gluster.org/cgit/glusto-tests.git/commit/?id=1821490ff915bcc2a575b8cda9da84d57be595af'/>
<id>1821490ff915bcc2a575b8cda9da84d57be595af</id>
<content type='text'>
Removing script_local_path as both script_local_path and
cls.script_upload_path hold the same values which makes
each script slow. This will help decrease the execution
time of the test suite.

PoC:
$cat test.py
a = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
b = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
$time python test.py

real 0m0.063s
user 0m0.039s
sys  0m0.019s

$cat test.py
a = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
$time python test.py

real 0m0.013s
user 0m0.009s
sys  0m0.003s

Code changes needed:

From:
script_local_path = ("/usr/share/glustolibs/io/scripts/"
                     "file_dir_ops.py")
cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/"
                          "file_dir_ops.py")
ret = upload_scripts(cls.clients, script_local_path)

To:
cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/"
                          "file_dir_ops.py")
ret = upload_scripts(cls.clients, cls.script_upload_path)

Change-Id: I7908b3b418bbc929b7cc3ff81e3675310eecdbeb
Signed-off-by: kshithijiyer &lt;kshithij.ki@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Removing script_local_path as both script_local_path and
cls.script_upload_path hold the same values which makes
each script slow. This will help decrease the execution
time of the test suite.

PoC:
$cat test.py
a = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
b = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
$time python test.py

real 0m0.063s
user 0m0.039s
sys  0m0.019s

$cat test.py
a = ("/usr/share/glustolibs/io/scripts/"
     "file_dir_ops.py")
$time python test.py

real 0m0.013s
user 0m0.009s
sys  0m0.003s

Code changes needed:

From:
script_local_path = ("/usr/share/glustolibs/io/scripts/"
                     "file_dir_ops.py")
cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/"
                          "file_dir_ops.py")
ret = upload_scripts(cls.clients, script_local_path)

To:
cls.script_upload_path = ("/usr/share/glustolibs/io/scripts/"
                          "file_dir_ops.py")
ret = upload_scripts(cls.clients, cls.script_upload_path)

Change-Id: I7908b3b418bbc929b7cc3ff81e3675310eecdbeb
Signed-off-by: kshithijiyer &lt;kshithij.ki@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[py2to3] Add py3 support in 'tests/functional/samba'</title>
<updated>2019-12-17T05:27:30+00:00</updated>
<author>
<name>Valerii Ponomarov</name>
<email>vponomar@redhat.com</email>
</author>
<published>2019-12-09T17:19:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.gluster.org/cgit/glusto-tests.git/commit/?id=5189557f8c3332e936842b3a21e44b5df21f7698'/>
<id>5189557f8c3332e936842b3a21e44b5df21f7698</id>
<content type='text'>
Change-Id: Iae0f6e729c26e466d82c4133439bdd7021485e7f
Signed-off-by: Valerii Ponomarov &lt;kiparis.kh@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Iae0f6e729c26e466d82c4133439bdd7021485e7f
Signed-off-by: Valerii Ponomarov &lt;kiparis.kh@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cifs: stat-prefetch while io is running</title>
<updated>2018-07-27T03:37:03+00:00</updated>
<author>
<name>vivek das</name>
<email>vdas@redhat.com</email>
</author>
<published>2018-06-18T09:06:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.gluster.org/cgit/glusto-tests.git/commit/?id=f9fe530428e95cd260cdd1a8c2015a1c34bbc9d2'/>
<id>f9fe530428e95cd260cdd1a8c2015a1c34bbc9d2</id>
<content type='text'>
Run IOs over cifs mount and simultaneously do a
gluster volume set stat-prefetch on and off.
The IOs should not fail.

Change-Id: I9327e599eb3536f3c49a90d468391055ea4c3bf9
Signed-off-by: vivek das &lt;vdas@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Run IOs over cifs mount and simultaneously do a
gluster volume set stat-prefetch on and off.
The IOs should not fail.

Change-Id: I9327e599eb3536f3c49a90d468391055ea4c3bf9
Signed-off-by: vivek das &lt;vdas@redhat.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
