search for: 72f8cc4

Displaying 3 results from an estimated 3 matches for "72f8cc4".

2015 Aug 06
0
[PATCH v4 02/17] tests/c-api: Convert the C API tests to use the test harness.
....c | 15 ++--- tests/c-api/tests-main.c | 56 +++++++++++------ tests/c-api/tests.h | 2 +- tests/c-api/tests.mk | 79 ++++++++++++++++++++++++ 11 files changed, 257 insertions(+), 175 deletions(-) create mode 100644 tests/c-api/tests.mk diff --git a/.gitignore b/.gitignore index 72f8cc4..045f3de 100644 --- a/.gitignore +++ b/.gitignore @@ -508,16 +508,13 @@ Makefile.in /tests/c-api/test-dlopen /tests/c-api/test-environment /tests/c-api/test-event-string -/tests/c-api/test*.img /tests/c-api/test-just-header /tests/c-api/test-just-header-cxx /tests/c-api/test-last-errno -/test...
2015 Aug 06
0
[PATCH v4 01/17] tests: Introduce test harness for running tests.
...ator/test_harness.ml create mode 100644 generator/tests.ml create mode 100644 generator/tests_mk.ml create mode 100755 inspector/test-virt-inspector-local-guests.sh.in create mode 100644 inspector/tests.mk create mode 100644 test-harness.pod diff --git a/.gitignore b/.gitignore index e968399..72f8cc4 100644 --- a/.gitignore +++ b/.gitignore @@ -276,8 +276,8 @@ Makefile.in /html/virt-v2v.1.html /html/virt-v2v-test-harness.1.html /html/virt-win-reg.1.html -/inspector/actual-*.xml /inspector/stamp-virt-inspector.pod +/inspector/test-virt-inspector-local-guests.sh /inspector/test-xmllint.sh /...
2015 Aug 06
20
[PATCH v4 00/17] tests: Introduce test harness for running tests.
Since v3: - A large number of fixes, especially for running the tests on installed libguestfs. - Fixed EXTRA_DIST rules throughout. - Extra patch 17/17 which is a tidy-up of the generated XML listing guests. Rich.