search for: test

Displaying 20 results from an estimated 140931 matches for "test".

2008 Oct 27
1
S4 object does not commute? (PR#13209)
Hello all, It appears that for the simplest of S4 objects, z+1 does not equal 1+z. Presumably this is a bug, as 1+z seems to make a malformed object (at least malformed as an input to str). Thanks, Robert > setClass("test", representation("vector")) [1] "test" > z <- new("test", 1) > identical(z+1, 1+z) [1] FALSE > str(z+1) Formal class 'test' [package ".GlobalEnv"] with 1 slots ..@ .Data: num 2 > str(1+z) Class 'test' Class 'test'...
2008 Oct 28
0
Arith ops dropping S4 bit [Was: S4 object does not commute? (PR#13222)
...equence is that computations drop through to the primitive C code. Not a good idea, because that code does various things to objects with attributes, some of them bizarre and most of them not what should logically happen for S4 classes. Consider two classes with slightly more content than "test": > setClass("test1",contains = "vector", representation(label = "character")) [1] "test1" > setClass("test2",contains = "vector", representation(flag = "logical")) [1] "test2" These two classes both inhe...
2008 Oct 30
0
(PR#13209) Arith ops dropping S4 *and* 'object' bit [Was: ...]
...the primitive C code. Not a good idea, because that JMC> code does various things to objects with attributes, JMC> some of them bizarre and most of them not what should JMC> logically happen for S4 classes. JMC> Consider two classes with slightly more content than "test": >> setClass("test1",contains = "vector", representation(label= "character")) JMC> [1] "test1" >> setClass("test2",contains = "vector", representation(flag = "logical")) JMC> [1] "test...
2018 Aug 12
0
[PATCH nbdkit 08/10] freebsd: In scripts use 'env bash' instead of '/bin/bash'.
The path to bash on FreeBSD is /usr/local/bin/bash. --- docs/make-links.sh | 2 +- nbdkit.in | 2 +- tests/make-pki.sh | 2 +- tests/make-psk.sh | 2 +- tests/test-blocksize.sh | 2 +- tests/test-cache.sh | 2 +- tests/test-captive.sh | 2 +- tests/test-cow.sh | 2 +- tests/test-cxx.sh | 2 +- tes...
2016 Aug 18
5
[PATCH v2 0/4] New getprogname module
...s my first big patch to gnulib, so bear with me for anything wrong/missing.) [1] http://lists.gnu.org/archive/html/bug-gnulib/2016-03/msg00048.html Changes from v1: - rebased, updating ChangeLog date Pino Toscano (4): getprogname: new module Port modules to use getprogname explicitly Port tests away from progname main.mk: remove sc_program_name ChangeLog | 162 +++++++++++++++++++++++++++++++++++ cfg.mk | 1 - lib/argmatch.c | 12 +-- lib/c-stack.c | 5 +- lib/chdir-long.c...
2017 Jul 07
2
[PATCH v3] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information: https://bugzilla.redhat.com/show_bug.cgi?id=1350465 Thanks: Tomáš Golembiovský --- v2v/virt-v2v.pod | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod index e68d75cf8..87dba240b 100644 --- a/v2v/virt-v2v.pod +++ b/v2v/virt-v2v.pod @@ -1909,18 +1909,32 @@ that
2017 Aug 14
3
[PATCH] builder: templates: debian: use single-partition layout
The previously selected 'atomic' recipe resulted in 2GB swap in a 6GB volume. Also, we don't really need the boot partition, so just create a partition using the whole disk space. --- builder/templates/debian.preseed | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/builder/templates/debian.preseed b/builder/templates/debian.preseed index
2008 Jan 16
0
[CruiseControl] RubyOnRails build 8649 failed
...ision 8649 committed by gbuesing on 2008-01-16 20:07:10 Introducing DateTime #utc, #utc? and #utc_offset, for duck-typing compatibility with Time. Closes #10002 M /trunk/activesupport/CHANGELOG M /trunk/activesupport/lib/active_support/core_ext/date_time/calculations.rb M /trunk/activesupport/test/core_ext/date_time_ext_test.rb TEST FAILURES AND ERRORS ----------------------- Name: test_belongs_to_polymorphic_with_counter_cache(AssociationsJoinModelTest) Type: Failure Message: <0> expected but was <nil>. ./test/associations/join_model_test.rb:299:in `test_belongs_to_polymorph...
2017 Aug 12
2
[PATCH] configure: Further split blocks of text in the script output.
...s_release], [21]) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release) +# Headings within the configure script output. +m4_define([HEADING], + [AS_ECHO + AS_ECHO(["--- $1 ---"])]) + AC_CONFIG_AUX_DIR([build-aux]) AC_REQUIRE_AUX_FILE([guestfs-test-driver]) @@ -76,15 +81,13 @@ AC_DEFINE_UNQUOTED([PACKAGE_VERSION_FULL],["$PACKAGE_VERSION_FULL"],[Full versio AC_SUBST([PACKAGE_VERSION_FULL]) dnl Early gnulib initialization. -AS_ECHO -AS_ECHO(["Configuring Gnulib:"]) +HEADING([Configuring Gnulib]) gl_EARLY gl_INIT d...
2018 Apr 06
3
[nbdkit PATCH v2] tests: Skip guestfs code on CentOS 6
...bd drive instead of a local file (annoyingly, guestfs documentation merely states the function was available since 0.3, without saying which later releases added new options); causing a compilation failure during 'make check'. Maybe the guestfs plugin should still be built, even though the tests that use guestfs can't work without support for GUESTFS_ADD_DRIVE_OPTS_PROTOCOL; but it's easier to just declare that on this old platform, we'll just disable guestfs integration altogether. With that in place, 'make check' now runs to completion, passing 14 and skipping 5 rem...
2020 Apr 06
1
[v2v PATCH] tests: fix location to generated images
Some of the libvirt XMLs for tests refer to a generated phony disk image, and so far the relative path used worked almost by chance. (For each disk, the path to it was ../test-data/etc, and since the overlay pointing to it is stored directly in $LIBGUESTFS_CACHEDIR, which is $buildir/tmp, then the relative path was resolved.) Inst...
2011 Jun 29
0
Error in testInstalledBasic
Hi, I am running R 2.13.0 on a Windows 7 machine. I ran the script: testInstalledBasic('devel') and received the following warning message: running tests of consistency of as/is.* creating ?isas-tests.R? running code in ?isas-tests.R? comparing ?isas-tests.Rout? to ?isas-tests.Rout.save? ...running tests of random deviate generation -- fails occasionally...
2008 Jan 19
0
[CruiseControl] RubyOnRails build 8671 failed
The build failed. CHANGES ------- Revision 8671 committed by bitsweat on 2008-01-19 03:45:24 Support aggregations in finder conditions. Closes #10572. M /trunk/activerecord/test/cases/finder_test.rb M /trunk/activerecord/CHANGELOG M /trunk/activerecord/lib/active_record/aggregations.rb M /trunk/activerecord/lib/active_record/base.rb TEST FAILURES AND ERRORS ----------------------- Name: test_custom_template(ActionMailerTest) Type: Failure Message: Exception raised...
2019 Dec 17
6
[v2v PATCH 0/3] Various dist/build fixes
Fix one dist issue, and almost all the builddir!=srcdir issues. (For the record, only 3 tests still fail in that setup.) Pino Toscano (3): libvirt-ocaml: add libvirt_c.h as source tests: fix path to sources of fake-virtio-win.iso tests: fix srcdir references bundled/libvirt-ocaml/Makefile.am | 1 + test-data/fake-virtio-win/Makefile.am | 2 +- tests/rhbz1232192.sh...
2019 Sep 17
2
Building LLVM with LLVM with no dependence on GCC
...compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- clang project is enabled -- clang-tools-extra project is disabled -- compiler-rt project is enabled -- debuginfo-tests project is disabled -- libclc project is disabled -- libcxx project is enabled -- libcxxabi project is enabled -- libunwind project is disabled -- lld project is enabled -- lldb project is disabled -- llgo project is disabled -- openmp project is disabled -- parallel-libs project is disabled -- po...
2018 Apr 09
0
[nbdkit PATCH 2/1] RFC: tests: Run tests that don't require libguestfs
A bit of refactoring to the HAVE_LIBGUESTFS conditional, coupled with the addition of a LIBGUESTFS_TESTS intermediate list, allows us to run a few more tests on CentOS 6 (adding some tests of command-line behavior and filters that was previously completely skipped). For the two tests that we can't run, using check_PROGRAMS still causes those programs to try to compile (which leads to compile err...
2004 Sep 05
0
[LLVMdev] POST MORTEM: llvm-test changes
Configure gives me these errors on FreeBSD. I'm proceding with the build anyway to see what happens. Don't worry :) It'll only take about 2.5 hours instead of 30+ now. install: ../test/Programs/Makefile does not exist config.status: executing test/Programs/Makefile.programs commands install: ../test/Programs/Makefile.programs does not exist config.status: executing test/Programs/Makefile.tests commands install: ../test/Programs/Makefile.tests does not exist config.status: execu...
2017 Jul 18
4
[PATCH v2 0/2] v2v: Add slow tests of opensuse 13.1, 13.2 and 42.1
v1 was: https://www.redhat.com/archives/libguestfs/2017-July/msg00154.html There is no change in the first patch, but I added a second patch adding slow tests of opensuse guests (which pass, but require the first patch). Rich.
2017 Jul 24
1
[PATCH] common/mlstdutils: Fix parallel builds of bytes.ml.
...tringSet.ml \ diff --git a/m4/guestfs_ocaml.m4 b/m4/guestfs_ocaml.m4 index a7334cd..d0f3349 100644 --- a/m4/guestfs_ocaml.m4 +++ b/m4/guestfs_ocaml.m4 @@ -123,6 +123,8 @@ EOF ]) AC_SUBST([OCAML_BYTES_COMPAT_CMO]) AC_SUBST([OCAML_BYTES_COMPAT_ML]) +AM_CONDITIONAL([HAVE_BYTES_COMPAT_ML], + [test "x$OCAML_BYTES_COMPAT_ML" != "x"]) dnl Flags we want to pass to every OCaml compiler call. OCAML_WARN_ERROR="-warn-error CDEFLMPSUVYZX-3" -- 1.8.3.1
2019 Sep 20
2
Building LLVM with LLVM with no dependence on GCC
.../usr/local/bin/clang++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- clang project is enabled -- clang-tools-extra project is disabled -- compiler-rt project is enabled -- debuginfo-tests project is disabled -- libclc project is disabled -- libcxx project is enabled -- libcxxabi project is enabled -- libunwind project is enabled -- lld project is enabled -- lldb project is disabled -- llgo project is disabled -- openmp project is disabled -- parallel-libs project is disabled -- pol...