Discussion:
Teuthology smoke test case(tasks/rados_python.yaml) failed on giant
Aanchal Agrawal
2014-10-20 06:04:16 UTC
Permalink
Hi All,

I am using giant branch for the development purpose.
One of the teuthology smoke test case 'ceph-qa-suite/suites/smoke/basic/tasks/rados_python.yaml' is failing on it.
From teuthology.log
==========================
2014-10-14T11:31:09.461 INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_rados_init ... ok
2014-10-14T11:31:09.489 INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_ioctx_context_manager ... ok
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:======================================================================
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:ERROR: test_rados.TestRados.test_get_pool_base_tier
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------------------------------------------------------------
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:Traceback (most recent call last):
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/usr/local/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: self.test(*self.arg)
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/home/ubuntu/cephtest/mnt.0/client.0/tmp/test_rados.py", line 96, in test_get_pool_base_tier
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: pool_id = self.rados.pool_lookup('foo')
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:AttributeError: 'Rados' object has no attribute 'pool_lookup'
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------------------------------------------------------------
2014-10-14T11:31:09.492 INFO:teuthology.task.workunit.client.0.plana02.stderr:Ran 36 tests in 98.393s
2014-10-14T11:31:09.492 INFO:teuthology.task.workunit.client.0.plana02.stderr:
2014-10-14T11:31:09.492 INFO:teuthology.task.workunit.client.0.plana02.stderr:FAILED (errors=1)
============================

"self.rados.pool_lookup()" is a part of file 'src/test/pybind/test_rados.py'.
=======================================
91 def test_get_pool_base_tier(self):

95 try:
96 pool_id = self.rados.pool_lookup('foo')
===============================================

Failure is due to latest commits on '/src/pybind/rados.py' which is in master and not present in giant.
It defines 'pool_lookup()' for rados object .

Following is a commit:
commit : d8ae14f48965e2aff191d67fda7b5ffd85840d47 to master.

We need to have this commit in giant branch in order to pass the test case.
Can anyone pull it to giant?

Thanks,
Aanchal

________________________________

PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).

--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to ***@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Gregory Farnum
2014-10-20 17:16:14 UTC
Permalink
It sounds like you're running the master branch ceph-qa-suite tests
against the giant branch of Ceph. The tests should pass if you resolve
that.

If not, or if you have some particular need for this function in the
Giant release, you (or someone you work with) can submit a backport
Pull Request, but this is a feature addition and Giant is pretty close
to release so I'm not sure it's appropriate for merging right now.
-Greg
Software Engineer #42 @ http://inktank.com | http://ceph.com


On Sun, Oct 19, 2014 at 11:04 PM, Aanchal Agrawal
Post by Aanchal Agrawal
Hi All,
I am using giant branch for the development purpose.
One of the teuthology smoke test case 'ceph-qa-suite/suites/smoke/basic/tasks/rados_python.yaml' is failing on it.
From teuthology.log
==========================
2014-10-14T11:31:09.461 INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_rados_init ... ok
2014-10-14T11:31:09.489 INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_ioctx_context_manager ... ok
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:======================================================================
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:ERROR: test_rados.TestRados.test_get_pool_base_tier
2014-10-14T11:31:09.490 INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------------------------------------------------------------
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/usr/local/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: self.test(*self.arg)
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/home/ubuntu/cephtest/mnt.0/client.0/tmp/test_rados.py", line 96, in test_get_pool_base_tier
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: pool_id = self.rados.pool_lookup('foo')
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:AttributeError: 'Rados' object has no attribute 'pool_lookup'
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------------------------------------------------------------
2014-10-14T11:31:09.492 INFO:teuthology.task.workunit.client.0.plana02.stderr:Ran 36 tests in 98.393s
2014-10-14T11:31:09.492 INFO:teuthology.task.workunit.client.0.plana02.stderr:FAILED (errors=1)
============================
"self.rados.pool_lookup()" is a part of file 'src/test/pybind/test_rados.py'.
=======================================
96 pool_id = self.rados.pool_lookup('foo')
===============================================
Failure is due to latest commits on '/src/pybind/rados.py' which is in master and not present in giant.
It defines 'pool_lookup()' for rados object .
commit : d8ae14f48965e2aff191d67fda7b5ffd85840d47 to master.
We need to have this commit in giant branch in order to pass the test case.
Can anyone pull it to giant?
Thanks,
Aanchal
________________________________
PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to ***@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Aanchal Agrawal
2014-10-20 18:56:57 UTC
Permalink
Got it. Thanks for the reply Greg.

Regards,
Aanchal

-----Original Message-----
From: Gregory Farnum [mailto:***@inktank.com]
Sent: Monday, October 20, 2014 10:46 PM
To: Aanchal Agrawal
Cc: ceph-***@vger.kernel.org
Subject: Re: Teuthology smoke test case(tasks/rados_python.yaml) failed on giant

It sounds like you're running the master branch ceph-qa-suite tests against the giant branch of Ceph. The tests should pass if you resolve that.

If not, or if you have some particular need for this function in the Giant release, you (or someone you work with) can submit a backport Pull Request, but this is a feature addition and Giant is pretty close to release so I'm not sure it's appropriate for merging right now.
-Greg
Post by Aanchal Agrawal
Hi All,
I am using giant branch for the development purpose.
One of the teuthology smoke test case 'ceph-qa-suite/suites/smoke/basic/tasks/rados_python.yaml' is failing on it.
From teuthology.log
==========================
2014-10-14T11:31:09.461
INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_
rados_init ... ok
2014-10-14T11:31:09.489
INFO:teuthology.task.workunit.client.0.plana02.stderr:test_rados.test_
ioctx_context_manager ... ok
2014-10-14T11:31:09.490
INFO:teuthology.task.workunit.client.0.plana02.stderr:================
======================================================
2014-10-14T11:31:09.490
test_rados.TestRados.test_get_pool_base_tier
2014-10-14T11:31:09.490
INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------
------------------------------------------------------
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/usr/local/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: self.test(*self.arg)
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: File "/home/ubuntu/cephtest/mnt.0/client.0/tmp/test_rados.py", line 96, in test_get_pool_base_tier
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr: pool_id = self.rados.pool_lookup('foo')
2014-10-14T11:31:09.491 INFO:teuthology.task.workunit.client.0.plana02.stderr:AttributeError: 'Rados' object has no attribute 'pool_lookup'
2014-10-14T11:31:09.491
INFO:teuthology.task.workunit.client.0.plana02.stderr:----------------
------------------------------------------------------
2014-10-14T11:31:09.492
INFO:teuthology.task.workunit.client.0.plana02.stderr:Ran 36 tests in
98.393s
2014-10-14T11:31:09.492
INFO:teuthology.task.workunit.client.0.plana02.stderr:FAILED
(errors=1) ============================
"self.rados.pool_lookup()" is a part of file 'src/test/pybind/test_rados.py'.
=======================================
96 pool_id = self.rados.pool_lookup('foo')
===============================================
Failure is due to latest commits on '/src/pybind/rados.py' which is in master and not present in giant.
It defines 'pool_lookup()' for rados object .
commit : d8ae14f48965e2aff191d67fda7b5ffd85840d47 to master.
We need to have this commit in giant branch in order to pass the test case.
Can anyone pull it to giant?
Thanks,
Aanchal
________________________________
PLEASE NOTE: The information contained in this electronic mail message is intended only for the use of the designated recipient(s) named above. If the reader of this message is not the intended recipient, you are hereby notified that you have received this message in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify the sender by telephone or e-mail (as shown above) immediately and destroy any and all copies of this message in your possession (whether hard copies or electronically stored copies).
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel"
info at http://vger.kernel.org/majordomo-info.html
��{.n�+�������+%��lzwm��b�맲��r��yǩ�ׯzX����ܨ}���Ơz�&j:+v�������zZ+
Loading...