tests: Move all testdriver XML to the same dir
Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
parent
bc32852e17
commit
aab71cc4d0
File diff suppressed because it is too large
Load Diff
3693
tests/testdriver.xml
3693
tests/testdriver.xml
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
data/testdriver/testdriver.xml
|
|
@ -60,11 +60,13 @@ class _URIs(object):
|
|||
|
||||
_testtmpl = "__virtinst_test__test://%s,predictable"
|
||||
self.test_default = _testtmpl % "/default"
|
||||
self.test_suite = _testtmpl % (os.getcwd() + "/tests/testsuite.xml")
|
||||
self.test_defaultpool_collision = (_testtmpl % (os.getcwd() +
|
||||
"/tests/data/cli/testdriver-defaultpool-collision.xml"))
|
||||
|
||||
self.test_full = _testtmpl % (os.getcwd() + "/tests/testdriver.xml")
|
||||
_testdriverdir = (os.path.dirname(__file__) + "/data/testdriver/")
|
||||
self.test_full = _testtmpl % (_testdriverdir + "testdriver.xml")
|
||||
self.test_suite = _testtmpl % (_testdriverdir + "testsuite.xml")
|
||||
self.test_defaultpool_collision = _testtmpl % (
|
||||
_testdriverdir + "defaultpool-collision.xml")
|
||||
|
||||
def _m(fakeuri):
|
||||
return self.test_full + ",fakeuri=%s" % fakeuri
|
||||
self.test_remote = _m("test+tls://fakeuri.example.com/")
|
||||
|
|
Loading…
Reference in New Issue