summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update PO files from transifex.Richard W.M. Jones2012-11-2016-24689/+10323
|
* Version 1.19.62.Richard W.M. Jones2012-11-206-173/+352
|
* ./run: Ensure all paths are built up cumulatively.Richard W.M. Jones2012-11-201-7/+21
|
* lua: valgrinding Lua code doesn't work.Richard W.M. Jones2012-11-201-1/+10
| | | | See comment.
* valgrind: Ignore init_libguestfs symbol.Richard W.M. Jones2012-11-201-1/+0
| | | | It's not relevant, since the memory leak begins in libvirt.
* lua: Replace internal lua_guestfs_* functions with guestfs_lua_*.Richard W.M. Jones2012-11-201-19/+19
| | | | | This is just code motion. It just ensures there is no possible conflict with lua_* symbols.
* lua: Attach __tostring functions exceptions.Richard W.M. Jones2012-11-204-5/+77
| | | | This includes a test.
* lua: Fix whitespace.Richard W.M. Jones2012-11-201-2/+0
|
* lua: Various fixes to the bindings (thanks Jerome Vuarand).Richard W.M. Jones2012-11-2015-52/+88
| | | | | | | | | | | | See http://article.gmane.org/gmane.comp.lang.lua.general/95065 Note that this is incompatible with existing code. You have to do: local G = require "guestfs" local g = G.create () ie. give the module your own name ("G" in that example).
* lua: Print the error thrown by callbacks.Richard W.M. Jones2012-11-201-2/+18
|
* lua: Add comment (not fix) for incorrect 'g' argument in callbacks.Richard W.M. Jones2012-11-201-1/+4
| | | | Thanks Jerome Vuarand.
* lua: Add bindtests.Richard W.M. Jones2012-11-205-1/+82
|
* lua: Use lua_rawgeti to read elements from lists of strings.Richard W.M. Jones2012-11-201-2/+1
| | | | | | This is faster, but more importantly it avoids the strange error 'lua: attempt to index a string value' which appears with (some) single element lists.
* lua: Add LuaStyle of commenting to the generator.Richard W.M. Jones2012-11-201-2/+4
|
* lua: Allow regular int to be passed as a 64 bit integer.Richard W.M. Jones2012-11-201-4/+13
|
* daemon: wipefs: Use --force option if available.Richard W.M. Jones2012-11-201-2/+40
| | | | | See https://bugzilla.redhat.com/show_bug.cgi?id=872831 and https://bugzilla.redhat.com/show_bug.cgi?id=865961
* lua: Simplify get_event function.Richard W.M. Jones2012-11-201-21/+12
| | | | Use luaL_checkoption which is designed for this purpose.
* lua: Document Guestfs.event_all.Richard W.M. Jones2012-11-191-0/+3
|
* erlang, lua: Fix links in man pages.Richard W.M. Jones2012-11-192-1/+3
|
* lua: Test globals in Guestfs.* namespace.Richard W.M. Jones2012-11-192-0/+28
|
* lua: Add global Guestfs.event_all (list of all events).Richard W.M. Jones2012-11-192-0/+19
|
* Version 1.19.61.1.19.61Richard W.M. Jones2012-11-196-62/+352
|
* lua: Various fixes and enhancements:Richard W.M. Jones2012-11-199-55/+435
| | | | | | | | | - add support for events (with test) - test progress messages - update documentation to describe events - refactor handle closing code - refactor error code - use 'assert' in test code instead of 'if ... then error end'
* perl: Add test of multiple independent handles.Richard W.M. Jones2012-11-191-0/+37
|
* lua: examples: Boolean true shouldn't have quotes around it.Richard W.M. Jones2012-11-181-2/+2
|
* lua: Add another test to prove that the handles are really independent.Richard W.M. Jones2012-11-182-0/+43
|
* lua: Don't use %m since Lua string formatter doesn't understand it.Richard W.M. Jones2012-11-181-2/+5
| | | | Use %s + strerror as a replacement.
* lua: Add some missing features.Richard W.M. Jones2012-11-172-8/+50
| | | | | | | | - Remove default error handler. - User cancel. - Add the errno to the object which is thrown on error. Still no events.
* Version 1.19.60.1.19.60Richard W.M. Jones2012-11-1720-3357/+4285
|
* Add Lua bindings.Richard W.M. Jones2012-11-1732-0/+1212
| | | | | | | | These are relatively complete, although only lightly tested. Missing: - events - last_errno - user_cancel
* perl: Clean up and update the tests.Richard W.M. Jones2012-11-173-4/+3
|
* perl: Small test of create with flags.Richard W.M. Jones2012-11-171-0/+25
|
* sparsify: Better error when user specifies --compress + raw output ↵Richard W.M. Jones2012-11-151-16/+21
| | | | (RHBZ#852194).
* todo: We must implement ACLs and filesystem capabilities for SCAP.Richard W.M. Jones2012-11-151-1/+23
| | | | Thanks Steve Grubb.
* daemon: Perform device name translation on mke2fs journaldevice (RHBZ#876579).Richard W.M. Jones2012-11-151-4/+18
| | | | | | | Also various fixes: - remove fixed-size buffer - change if (err) free (err) -> free (err).
* recipes: Add sections about hexdumping, hexediting sectors.Richard W.M. Jones2012-11-151-1/+14
|
* recipes: Add recipe for diffing two guests.Richard W.M. Jones2012-11-141-0/+10
|
* Version 1.19.59.1.19.59Richard W.M. Jones2012-11-1320-9796/+10535
|
* dist: Add miscellaneous files to the tarball.Richard W.M. Jones2012-11-134-1/+15
| | | | Lots of these had been omitted over time.
* tests/protocol: Add test-qemudir-launchfail.sh to tarball (but don't run it).Richard W.M. Jones2012-11-131-1/+2
| | | | | | | This file was present in git, but missing from the tarball. Don't actually run the test: it depends on details of how the appliance is constructed which would fail for old-style appliances.
* fish: Add test for remote events.Richard W.M. Jones2012-11-132-1/+3
| | | | | | | This test was present in git, but not included in the tarball, nor in the tests that guestfish actually runs. This fixes commit 17182af3a6de8e3e94e0a914416c54f09bb74007.
* tests: Add a parallel launch test.Richard W.M. Jones2012-11-135-0/+203
| | | | | | | This is designed to reveal libvirt race conditions such as bug 875741. This is a "slow test" so it only runs if you do 'make check-slow'.
* tests: Add 'make check-slow' rule to recursively run slow/long-running tests.Richard W.M. Jones2012-11-133-6/+20
|
* Add 'make help' rule.Richard W.M. Jones2012-11-132-0/+27
| | | | This gives a short overview of the make targets.
* tests: Replace 'make extra-tests' with individual tests.Richard W.M. Jones2012-11-1336-392/+225
| | | | | | | | | | | | | | | | | | | | | | | | | 'make extra-tests' was a monolithic set of tests that did all sorts of things: valgrind, tests over local guests, tests with upstream qemu, tests with upstream libvirt, tests with the appliance attach method. This made it hard to perform individual tests, eg. just valgrind testing. It was also hard to maintain because the tests were not located in the same directories as the programs and sometimes duplicated tests that were run elsewhere. This commit splits up 'make extra-tests' into 5 separate targets: make check-valgrind # run a subset of tests under valgrind make check-valgrind-local-guests # test under valgrind with local guests make check-with-appliance # test with attach-method == appliance make check-with-upstream-qemu # test with an alternate/upstream qemu make check-with-upstream-libvirt # test with an alternate/upstream libvirt (You can also still run 'make extra-tests' which is now simply a rule that runs the above 5 targets in order). This replaces everything that was in the tests/extra directory, so that has now gone.
* extra-tests: Add $(libvirt_ro_uri) substitution to configure.Richard W.M. Jones2012-11-132-11/+12
| | | | This is essentially just code motion.
* Define whole valgrind command (as @VG@) in the configure script.Richard W.M. Jones2012-11-133-7/+7
| | | | | | This is mostly just code motion, but it also changes the default location where valgrind.log is written to be the top build directory (instead of tests/extra/valgrind.log).
* align: Add a test for virt-alignment-scan.Richard W.M. Jones2012-11-132-2/+33
|
* fish: Add simple tests of starting up, inspection, using the prepared disks.Richard W.M. Jones2012-11-134-0/+81
|
* inspector: Add some real virt-inspector tests.Richard W.M. Jones2012-11-135-5/+68
|