Displaying 20 results from an estimated 633 matches for "23,7".
Did you mean:
21,7
2009 Jun 16
1
[PATCH server] Fix errors in controller tests.
...| 2 +-
7 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/test/functional/host_controller_test.rb b/src/test/functional/host_controller_test.rb
index caf198d..dc9891c 100644
--- a/src/test/functional/host_controller_test.rb
+++ b/src/test/functional/host_controller_test.rb
@@ -23,7 +23,7 @@ require 'host_controller'
# Re-raise errors caught by the controller.
class HostController; def rescue_action(e) raise e end; end
-class HostControllerTest < Test::Unit::TestCase
+class HostControllerTest < ActionController::TestCase
fixtures :hosts, :pools, :privile...
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
...reams/Makefile.am | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/test_grabbag/cuesheet/Makefile.am b/src/test_grabbag/cuesheet/Makefile.am
index 96030407..59ae71f4 100644
--- a/src/test_grabbag/cuesheet/Makefile.am
+++ b/src/test_grabbag/cuesheet/Makefile.am
@@ -23,7 +23,7 @@ EXTRA_DIST = \
test_cuesheet.vcxproj.filters
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
-noinst_PROGRAMS = test_cuesheet
+check_PROGRAMS = test_cuesheet
test_cuesheet_SOURCES = \
main.c
test_cuesheet_LDADD = \
diff --git a/src/test_grabbag/pictur...
2018 Mar 27
2
murmurhash3 test failures on big-endian systems
...e addressed in getblock{32,64}. Murmurhash treats each
> block as an integer expecting little-endian storage. Applying this
> additional change fixes the build on s390x (and does not break it on
> x864_64):
>
> --- b/src/lib/murmurhash3.c
> +++ b/src/lib/murmurhash3.c
> @@ -23,7 +23,7 @@
>
> static inline uint32_t getblock32(const uint32_t *p, int i)
> {
> - return p[i];
> + return cpu32_to_le(p[i]);
? or perhaps le32_to_cpu, although it should be the same in the end.
> }
>
> //-----------------------------------------------------------...
2009 Nov 09
1
[PATCH libguestfs] fix doc typo
...guestfs] fix doc typo
* fuse/guestmount.pod: Avoid "the the".
---
fuse/guestmount.pod | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fuse/guestmount.pod b/fuse/guestmount.pod
index 263959e..ee9a7c8 100644
--- a/fuse/guestmount.pod
+++ b/fuse/guestmount.pod
@@ -23,7 +23,7 @@ userspace") to make it appear as a mountable device.
Along with other options, you have to give at least one device (I<-a>
option) and at least one mountpoint (I<-m> option). How this works is
better explained in the L<guestfish(1)> manual page, or you can use...
2007 Jul 13
0
3 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
doc/Makefile.am | 1
doc/swfdec-docs.sgml | 1
doc/swfdec-sections.txt | 23 ++++++++
libswfdec/Makefile.am | 3 -
libswfdec/swfdec.h | 9 +--
libswfdec/swfdec_as_array.c | 2
libswfdec/swfdec_as_boolean.c | 3 -
libswfdec/swfdec_as_context.c | 46 ++++++++++++++++-
libswfdec/swfdec_as_context.h...
2018 Mar 27
2
murmurhash3 test failures on big-endian systems
Hi,
On 12:55 Mon 26 Mar , Josef 'Jeff' Sipek wrote:
> On Mon, Mar 26, 2018 at 15:57:01 +0300, Apollon Oikonomopoulos wrote:
> ...
> > I'd be happy to test the patch, thanks!
>
> Ok, try the attached patch. (It is a first pass at the issue, so it may not
> be the final diff that'll end up getting committed. It'd be good to know if
> it actually
2016 Sep 09
1
[PATCH] tests: do not assume '.' is in Perl's @INC
...ts/daemon/test-btrfs.pl | 2 +-
tests/daemon/test-daemon-start.pl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/daemon/test-btrfs.pl b/tests/daemon/test-btrfs.pl
index 302ecb9..7b306b7 100755
--- a/tests/daemon/test-btrfs.pl
+++ b/tests/daemon/test-btrfs.pl
@@ -23,7 +23,7 @@ use warnings;
use File::Temp qw/tempdir/;
-require 'captive-daemon.pm';
+require './captive-daemon.pm';
# Set $PATH to include directory that will have phony 'btrfs' binary.
my $bindir = tempdir (CLEANUP => 1);
diff --git a/tests/daemon/test-daemon-sta...
2017 May 17
1
problem running test on a system without /etc/localtime
...imal patch to the sources and
report back ?
> Index: src/library/base/R/datetime.R
> ===================================================================
> --- src/library/base/R/datetime.R (revision 72684)
> +++ src/library/base/R/datetime.R (working copy)
> @@ -23,7 +23,7 @@
> {
> tz <- Sys.getenv("TZ", names = FALSE)
> if(!location || nzchar(tz)) return(Sys.getenv("TZ", unset = NA_character_))
> - lt <- normalizePath("/etc/localtime") # Linux, macOS, ...
> + lt <- normalizePath(...
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik,
I've found a middleground for the problem of setting default CFLAGS. I've gone back
to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script
(i.e., the user hasn't specified anything) and then proceed to set them to the defaults
as before. This has been suggested before:
https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html
In
2018 Jun 15
1
[PATCH] v2v: rhv-upload: Disable Nagle algorithm
...milliseconds on the server side
during virt-v2v upload to ovirt. Here is example log from current RHEL
virt-v2v version, uploading to RHV 4.2.3:
2018-06-12 17:04:01,750 INFO (Thread-2) [images] Writing 52736 bytes
at offset 0 flush False to /path/to/image for ticket
374bec27-930d-4097-8e41-e4bc23324eb0
2018-06-12 17:04:01,790 INFO (Thread-2) [directio] Operation stats:
<Clock(total=0.04, read=0.04, write=0.00)>
The server spent 40 milliseconds reading 52736 bytes form
rhv_upload_plugin running on the same host.
This issue was fixed in python 3.5 by using the TCP_NO_DELAY option...
2019 Jan 17
1
[hivex PATCH] ruby: improve test functions
...alues(node).find { |v| h.value_key(v) == "symbols $£₤₧€" }
- assert value != nil
+ refute_nil(value)
end
end
diff --git a/ruby/tests/tc_200_write.rb b/ruby/tests/tc_200_write.rb
index 327d0a8..463283e 100644
--- a/ruby/tests/tc_200_write.rb
+++ b/ruby/tests/tc_200_write.rb
@@ -23,12 +23,12 @@ class TestWrite < MiniTest::Unit::TestCase
refute_nil (h)
root = h.root()
- assert (root)
+ refute_nil (root)
h.node_add_child(root, "A")
h.node_add_child(root, "B")
b = h.node_get_child(root, "B")
- assert (b)
+...
2019 Mar 29
4
[PATCH v2] drm: prefix header search paths with $(srctree)/
...tten in
that way, but not all. The goal of this work is to make the notation
consistent, and finally get rid of the gross hacks.
Having whitespaces after -I does not matter since commit 48f6e3cf5bc6
("kbuild: do not drop -I without parameter").
[1]: https://patchwork.kernel.org/patch/9632347/
Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
Reviewed-by: Sam Ravnborg <sam at ravnborg.org>
---
I put all gpu/drm changes into a single patch because
they are trivial conversion.
If you are interested in the big picture of this work,
the full patch set is ava...
2007 Oct 11
1
[PATCH] Fix compiler warnings that prevent compilation
...| 2 +-
libswfdec/swfdec_as_context.c | 4 ++--
libswfdec/swfdec_as_native_function.h | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3aa5e4c..9749087 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@ dnl if we support them, we set them unconditionally
AS_COMPILER_FLAG(-Wall, GLOBAL_CFLAGS="-Wall", GLOBAL_CFLAGS="")
dnl I want this but stupid headers don't let me
dnl AS_COMPILER_FLAG(-Wshadow, GLOBAL_CFLAGS="$GLOBAL_CFLAGS -Wshadow")
-AS_COMPILER_F...
2013 Jan 11
3
[PATCH] virtio: suppress kmemleak false positive
...C: Daniel Baluta <dbaluta at ixiacom.com>
---
drivers/virtio/virtio_ring.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
index ffd7e7d..e0b591b 100644
--- a/drivers/virtio/virtio_ring.c
+++ b/drivers/virtio/virtio_ring.c
@@ -23,6 +23,7 @@
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/hrtimer.h>
+#include <linux/kmemleak.h>
/* virtio guest is communicating with a virtual "device" that actually runs on
* a host processor. Memory barriers are used to control SMP...
2013 Jan 11
3
[PATCH] virtio: suppress kmemleak false positive
...C: Daniel Baluta <dbaluta at ixiacom.com>
---
drivers/virtio/virtio_ring.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c
index ffd7e7d..e0b591b 100644
--- a/drivers/virtio/virtio_ring.c
+++ b/drivers/virtio/virtio_ring.c
@@ -23,6 +23,7 @@
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/hrtimer.h>
+#include <linux/kmemleak.h>
/* virtio guest is communicating with a virtual "device" that actually runs on
* a host processor. Memory barriers are used to control SMP...
2019 Jan 31
2
[PATCH] drm: prefix header search paths with $(srctree)/
...tten in
that way, but not all. The goal of this work is to make the notation
consistent, and finally get rid of the gross hacks.
Having whitespaces after -I does not matter since commit 48f6e3cf5bc6
("kbuild: do not drop -I without parameter").
[1]: https://patchwork.kernel.org/patch/9632347/
Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---
I put all gpu/drm changes into a single patch because
they are trivial conversion.
Please let me know if I need to split this into per-driver patches.
drivers/gpu/drm/amd/amdgpu/Makefile | 2 +-
drivers/gpu/drm/amd...
2015 Sep 29
0
[PATCH 2/4] lib: Move <libintl.h> -> files that use it.
...ves.c
+++ b/src/drives.c
@@ -34,6 +34,7 @@
#include <arpa/inet.h>
#include <assert.h>
#include <sys/types.h>
+#include <libintl.h>
#include <pcre.h>
diff --git a/src/errors.c b/src/errors.c
index 2d3ae84..c259884 100644
--- a/src/errors.c
+++ b/src/errors.c
@@ -23,6 +23,7 @@
#include <stdarg.h>
#include <string.h>
#include <errno.h>
+#include <libintl.h>
#include "c-ctype.h"
diff --git a/src/filearch.c b/src/filearch.c
index 29c9ba6..7b63719 100644
--- a/src/filearch.c
+++ b/src/filearch.c
@@ -26,6 +26,7 @@
#include...
2012 Jun 08
13
Default password hash
...elatively easy these days. We've supported
SHA256 and SHA512 for many years now, so how about making SHA512 the
default instead of MD5, like on most Linux distributions?
Index: etc/login.conf
===================================================================
--- etc/login.conf (revision 236616)
+++ etc/login.conf (working copy)
@@ -23,7 +23,7 @@
# AND SEMANTICS'' section of getcap(3) for more escape sequences).
default:\
- :passwd_format=md5:\
+ :passwd_format=sha512:\
:copyright=/etc/COPYRIGHT:\
:welcome=/etc/motd:\
:setenv=MAIL=/v...
2024 Aug 21
2
[PATCH v2 65/86] drm/amdgpu: Run DRM default client setup
...christian.koenig at amd.com>
Cc: Xinhui Pan <Xinhui.Pan at amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 5dd39e6c6223..849d59e2bca7 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -23,6 +23,7 @@
*/
#include <drm/amdgpu_drm.h>
+#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_fbdev_ttm.h>
#include <d...
2012 Feb 22
5
[PATCH] Add gtags target for xen/Makefile. Also update .hgignore.
# HG changeset patch
# User Wei Liu <wei.liu2@citrix.com>
# Date 1329922671 0
# Node ID bb2986677df84b9709a60aea7e70ffd9f9e23f76
# Parent d433a9cb0089683b8f75458807c5437341f2cdcc
Add gtags target for xen/Makefile. Also update .hgignore.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
diff --git a/.hgignore b/.hgignore
--- a/.hgignore
+++ b/.hgignore
@@ -23,6 +23,7 @@
^\.config$
^\.pc
(^|/)(tags|TAGS)$
+(^|/)(GTAG...