Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | syntax: Ignore documentation when testing for magic number exit() calls ↵ | Richard W.M. Jones | 2012-09-17 | 1 | -0/+1 | |
| | | | | (thanks Jim Meyering). | |||||
* | syntax: Exclude PO files from doubled words test (thanks Jim Meyering). | Richard W.M. Jones | 2012-09-17 | 1 | -0/+1 | |
| | ||||||
* | syntax: Remove definitions of O_CLOEXEC, except in examples (thanks Jim ↵ | Richard W.M. Jones | 2012-09-17 | 10 | -36/+1 | |
| | | | | | | | Meyering). The gnulib <fcntl.h> replacement header will now define this symbol if it's not defined already. | |||||
* | syntax: Exclude period in error message checks from PHP programs (thanks: ↵ | Richard W.M. Jones | 2012-09-17 | 1 | -0/+1 | |
| | | | | Jim Meyering). | |||||
* | syntax: Disable cast arg to free test (thanks Jim Meyering). | Richard W.M. Jones | 2012-09-17 | 1 | -1/+2 | |
| | ||||||
* | syntax: Exclude certain files from bindtextdomain test (thanks Jim Meyering). | Richard W.M. Jones | 2012-09-17 | 1 | -0/+3 | |
| | ||||||
* | Update to latest gnulib. | Richard W.M. Jones | 2012-09-17 | 2 | -0/+1 | |
| | ||||||
* | Version 1.19.41.1.19.41 | Richard W.M. Jones | 2012-09-16 | 20 | -4335/+4803 | |
| | ||||||
* | extra-tests: Write a qemu wrapper script on the fly. | Richard W.M. Jones | 2012-09-15 | 3 | -26/+14 | |
| | | | | | | | | | | | Passing the $upstream_qemu environment variable is not reliable when libvirt is involved: Environment variables are passed to the first instance of the session libvirtd, but because libvirt reuses the session libvirtd, subsequent environment variable settings are lost (this is filed as RHBZ#856619). Bypass all of this by writing a custom qemu-wrapper.sh which contains the hard-coded values we want. | |||||
* | extra-tests: Rerun extra tests with regular appliance attach method. | Richard W.M. Jones | 2012-09-15 | 2 | -1/+35 | |
| | | | | | If libvirt is being used as the backend, rerun all the extra-tests again using the regular appliance backend. | |||||
* | extra-tests: The upstream qemu test now reruns all the extra tests. | Richard W.M. Jones | 2012-09-15 | 3 | -10/+12 | |
| | ||||||
* | extra-tests: Fix libvirt URI so we can run tests with libvirt attach-method. | Richard W.M. Jones | 2012-09-15 | 1 | -14/+10 | |
| | ||||||
* | syntax: Remove trailing whitespace. | Richard W.M. Jones | 2012-09-15 | 12 | -16/+11 | |
| | | | | Found by 'make syntax-check'. | |||||
* | generator: Remove inaccurate comment. | Richard W.M. Jones | 2012-09-15 | 1 | -20/+0 | |
| | | | | | The correct way to extend functions is documented in generator/README. This comment was no longer accurate. | |||||
* | syntax: Replace test == with = or -eq as appropriate. | Richard W.M. Jones | 2012-09-15 | 2 | -12/+12 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: xfs: Rewrite split_strdup function to avoid use of strncpy. | Richard W.M. Jones | 2012-09-15 | 1 | -6/+8 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Use STREQ/STRNEQ in place of strcmp. | Richard W.M. Jones | 2012-09-15 | 3 | -3/+5 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Remove include <signal.h> in file that doesn't use it. | Richard W.M. Jones | 2012-09-15 | 1 | -1/+0 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Remove PATH_MAX-sized buffers allocated on the stack. | Richard W.M. Jones | 2012-09-15 | 4 | -15/+33 | |
| | | | | | | | | | | | | | | On Linux PATH_MAX is 4096, but on some platforms it can be much larger or even not defined (ie. unlimited). Therefore using a PATH_MAX-sized stack buffer is not a great idea for portable programs. This change removes use of PATH_MAX-sized stack-allocated buffers. This change only applies to the library and standalone programs. Inside the daemon, memory allocation is much more complicated so I have not changed those (yet). Found by 'make syntax-check'. | |||||
* | syntax: Remove gnulib "ignore-value.h" in files that don't use it. | Richard W.M. Jones | 2012-09-15 | 7 | -8/+0 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Remove include <dirent.h> in files that don't use it. | Richard W.M. Jones | 2012-09-15 | 2 | -2/+0 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Remove gnulib c-ctype.h in files that don't use it. | Richard W.M. Jones | 2012-09-15 | 8 | -9/+0 | |
| | | | | Found by 'make syntax-check'. | |||||
* | syntax: Remove include <assert.h> where assert is not used. | Richard W.M. Jones | 2012-09-15 | 5 | -5/+0 | |
| | | | | Found by 'make syntax-check'. | |||||
* | lib: Rearrange headers. | Richard W.M. Jones | 2012-09-15 | 2 | -10/+8 | |
| | | | | This is just code motion. | |||||
* | lib: Remove unused headers <arpa/inet.h> and <netinet/in.h> | Richard W.M. Jones | 2012-09-15 | 2 | -4/+0 | |
| | | | | | These were used back in the day when we used TCP for the communications channel with the guest. | |||||
* | syntax: Remove HAVE_*_H tests which are always true. | Richard W.M. Jones | 2012-09-15 | 3 | -42/+7 | |
| | | | | | Gnulib supplies replacements for these headers, so there is no need to test. | |||||
* | perl: Add <stdio.h> and <stdlib.h> for printf and malloc. | Richard W.M. Jones | 2012-09-15 | 1 | -0/+2 | |
| | ||||||
* | perl: Include <inttypes.h> and assume it always defines PRId64 and PRIu64. | Richard W.M. Jones | 2012-09-15 | 1 | -8/+2 | |
| | | | | | | If these are not defined in the header files, it's a problem on the platform which we should fix with gnulib. Our replacement definitions might be wrong here. | |||||
* | lib: These optargs structures are not modified, hence const. | Richard W.M. Jones | 2012-09-15 | 1 | -3/+3 | |
| | ||||||
* | syntax: Remove test for TAB indentation. | Richard W.M. Jones | 2012-09-15 | 1 | -8/+0 | |
| | | | | | Nothing particularly wrong with using TABs for indentation, and this test also has a lot of false positives. | |||||
* | syntax: xfs: Remove useless if before free. | Richard W.M. Jones | 2012-09-15 | 1 | -4/+4 | |
| | | | | Found by running 'make syntax-check'. | |||||
* | docs: Fix documentation of syntax-check target, add extra-tests. | Richard W.M. Jones | 2012-09-15 | 1 | -2/+7 | |
| | ||||||
* | faq: Make the legal section less unnecessarily legalistic. | Richard W.M. Jones | 2012-09-14 | 1 | -6/+7 | |
| | ||||||
* | faq: Tidy up headings. | Richard W.M. Jones | 2012-09-14 | 1 | -12/+16 | |
| | ||||||
* | faq: Add more answers about read-only disks. | Richard W.M. Jones | 2012-09-14 | 1 | -0/+35 | |
| | ||||||
* | launch: libvirt: Enable sVirt. | Richard W.M. Jones | 2012-09-14 | 1 | -21/+0 | |
| | ||||||
* | test-9p: Disable this test with libvirt. | Richard W.M. Jones | 2012-09-14 | 1 | -2/+2 | |
| | | | | | This test doesn't work with sVirt if SELinux is enforcing, because qemu won't be able to access the 9p-exported directory on the host. | |||||
* | build: Create new 'tmp' directory for tests. | Richard W.M. Jones | 2012-09-14 | 5 | -3/+21 | |
| | | | | | | | | | | | | Having a separate directory means: (1) It's easy to clean up orphaned temporary files, the appliance, etc. (2) You can put an SELinux label on this directory so that qemu can write to it when you're using sVirt and SELinux is enforcing: chcon --reference=/tmp tmp | |||||
* | launch: libvirt: Mark appliance disk as <shareable/> (thanks Dan Berrange). | Richard W.M. Jones | 2012-09-14 | 1 | -0/+3 | |
| | | | | | | | | | | | This is a fix for multiprogramming: If two instances of libguestfs share the same appliance disk, then libvirt would unlabel the disk when one of the instances closes the handle, resulting in the other qemu being unable to continue accessing the appliance. Adding the flag makes libvirt understand that the disk is shared so it doesn't do this, and it apparently handles locking correctly too if we were using sanlock. | |||||
* | test-tool: Print more environment variables. | Richard W.M. Jones | 2012-09-14 | 1 | -7/+18 | |
| | | | | | This prints LIBVIRT_*, LIBVIRTD_*, LD_* and PATH, since these are all useful for debugging and could affect libguestfs in some way. | |||||
* | fish: Replace '_' with '-' in deprecation cross-refs (thanks Olaf Hering). | Richard W.M. Jones | 2012-09-13 | 2 | -3/+5 | |
| | ||||||
* | lib: guestfs_disk_format: Set LC_ALL=C instead of LANG=C. | Richard W.M. Jones | 2012-09-12 | 1 | -1/+1 | |
| | | | | | | LC_ALL takes precedence over LANG. See: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html | |||||
* | release-notes: Add 'draft' background image. | Richard W.M. Jones | 2012-09-06 | 5 | -5/+91 | |
| | ||||||
* | extra-tests: Don't use $QEMU as a variable. | Richard W.M. Jones | 2012-09-05 | 2 | -6/+13 | |
| | | | | | | Since 'QEMU' is set (overwritten) by the autoconf-generated Makefile, this test would always test installed qemu, not upstream qemu, making it pretty useless. Use another name for this variable. | |||||
* | generator: Remove generated and unused files from previous runs of the ↵ | Richard W.M. Jones | 2012-09-05 | 3 | -1/+44 | |
| | | | | | | | | | | | | generator. If you go back in time in git (eg. git reset, git bisect) then you can end up in a situation where a file that was generated by a later version is left around unused in the earlier version. This isn't a problem for most things, but gobject documentation generation picks up any file in a directory, even unreferenced ones, and breaks. So the correct thing to do is to remove these files. | |||||
* | generator: gobject: Use a more normal way to output files. | Richard W.M. Jones | 2012-09-05 | 2 | -100/+111 | |
| | | | | | The generator output is identical, verified by comparing the output files before and after the change. | |||||
* | Version 1.19.40.1.19.40 | Richard W.M. Jones | 2012-09-04 | 3 | -5/+5 | |
| | ||||||
* | sparsify: Fix use of closed handle (thanks Olaf Hering). | Richard W.M. Jones | 2012-09-04 | 2 | -2/+2 | |
| | | | | | | | This fixes commit faaedeb3432253847107ca2c4530f681c6a1e385. Also contains an update to the test which tests the format auto-detect path. | |||||
* | fix fuse_opt_add_opt_escaped return type | Olaf Hering | 2012-09-04 | 1 | -1/+1 | |
| | | | | | | | | | | I: Program returns random data in a function E: libguestfs no-return-in-nonvoid-function guestmount.c:75 The function fuse_opt_add_opt_escaped has only one caller and a return code is not checked. Signed-off-by: Olaf Hering <olaf@aepfle.de> | |||||
* | Version 1.19.39.1.19.39 | Richard W.M. Jones | 2012-09-04 | 20 | -23615/+24505 | |
| |