diff options
author | Tomáš Ryšavý <tom.rysavy.0@gmail.com> | 2016-05-26 17:01:50 +0200 |
---|---|---|
committer | John Ferlan <jferlan@redhat.com> | 2016-06-08 11:23:12 -0400 |
commit | cd7dd1508d282f5d6ad992bf12752a2cf562ff86 (patch) | |
tree | e26b9d0c5968af78d815ccdf04c20b61263b00b9 /tests/virfiletest.c | |
parent | 09b406a7562963d43b4c743f09fd97fb76777512 (diff) | |
download | libvirt-cd7dd1508d282f5d6ad992bf12752a2cf562ff86.tar.gz |
tests: Rename virtTestRun to virTestRun.
This function doesn't follow our convention of naming functions.
Diffstat (limited to 'tests/virfiletest.c')
-rw-r--r-- | tests/virfiletest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/virfiletest.c b/tests/virfiletest.c index 628fa1fb0e..736d164227 100644 --- a/tests/virfiletest.c +++ b/tests/virfiletest.c @@ -146,7 +146,7 @@ mymain(void) struct testFileGetMountSubtreeData data = { \ path, prefix, mounts, ARRAY_CARDINALITY(mounts), rev \ }; \ - if (virtTestRun(name, testFileGetMountSubtree, &data) < 0) \ + if (virTestRun(name, testFileGetMountSubtree, &data) < 0) \ ret = -1; \ } while (0) @@ -160,8 +160,8 @@ mymain(void) do { \ data1.path = PATH; \ data1.expect = EXPECT; \ - if (virtTestRun(virtTestCounterNext(), testFileSanitizePath, \ - &data1) < 0) \ + if (virTestRun(virtTestCounterNext(), testFileSanitizePath, \ + &data1) < 0) \ ret = -1; \ } while (0) |