search for: test_progs

Displaying 17 results from an estimated 17 matches for "test_progs".

Did you mean: test_logs
2013 Jan 14
3
enable build for ocaml bytecode
...mlguestfs.cma +if HAVE_OCAMLOPT +noinst_DATA += mlguestfs.cmxa +endif +noinst_DATA += META # Build the C part into a library, so that automake handles the C # compilation step for us. Note that we don't directly use this @@ -101,9 +111,13 @@ TESTS = run-bindtests \ $(patsubst %,%.opt,$(test_progs))) noinst_DATA += \ - bindtests.bc bindtests.opt \ + bindtests.bc +if HAVE_OCAMLOPT +noinst_DATA += \ + bindtests.opt \ $(test_progs:%=%.bc) \ $(test_progs:%=%.opt) +endif bindtests.bc: bindtests.cmo mlguestfs.cma mkdir -p t @@ -217,7 +231,7 @@ install-data-hook: $(OCAMLFIND) install...
2020 Mar 18
6
[PATCH i-g-t 0/4] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC
2020 Mar 18
0
[PATCH i-g-t 4/4] tests: Add nouveau-crc tests
...uire_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(int fd); +bool is_nouveau_device(int fd); bool is_vc4_device(int fd); /** diff --git a/tests/meson.build b/tests/meson.build index 7629afde..9ff74cc6 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -70,6 +70,7 @@ test_progs = [ 'kms_vblank', 'kms_vrr', 'meta_test', + 'nouveau_crc', 'panfrost_get_param', 'panfrost_gem_new', 'panfrost_prime', diff --git a/tests/nouveau_crc.c b/tests/nouveau_crc.c new file mode 100644 index 00000000..09e17a6f --- /dev/nu...
2020 Apr 17
0
[PATCH i-g-t v3 5/5] tests: Add nouveau-crc tests
...uire_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(int fd); +bool is_nouveau_device(int fd); bool is_vc4_device(int fd); /** diff --git a/tests/meson.build b/tests/meson.build index 0bdcfbe4..39f1362e 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -71,6 +71,7 @@ test_progs = [ 'kms_vblank', 'kms_vrr', 'meta_test', + 'nouveau_crc', 'panfrost_get_param', 'panfrost_gem_new', 'panfrost_prime', diff --git a/tests/nouveau_crc.c b/tests/nouveau_crc.c new file mode 100644 index 00000000..05c2f4de --- /dev/nu...
2020 Aug 18
2
[PATCH i-g-t v4] tests: Add nouveau-crc tests
...uire_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(int fd); +bool is_nouveau_device(int fd); bool is_vc4_device(int fd); /** diff --git a/tests/meson.build b/tests/meson.build index 684de043..92647991 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -74,6 +74,7 @@ test_progs = [ 'kms_vblank', 'kms_vrr', 'meta_test', + 'nouveau_crc', 'panfrost_get_param', 'panfrost_gem_new', 'panfrost_prime', diff --git a/tests/nouveau_crc.c b/tests/nouveau_crc.c new file mode 100644 index 00000000..05c2f4de --- /dev/nu...
2020 Sep 30
9
[PATCH i-g-t v5 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, and at this point that support has made its way upstream. Hooray! So, let's start adding some relevant tests for it since nvidia's CRC implementation has some rather interesting design choices that needed to be worked around. Lyude Paul (5): lib/igt_core: Fix igt_assert_fd() documentation
2020 Sep 30
0
[PATCH i-g-t v5 5/5] tests: Add nouveau-crc tests
...uire_vc4(int fd); bool is_amdgpu_device(int fd); bool is_i915_device(int fd); +bool is_nouveau_device(int fd); bool is_vc4_device(int fd); /** diff --git a/tests/meson.build b/tests/meson.build index 515f7528..32f011e9 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -76,6 +76,7 @@ test_progs = [ 'kms_vrr', 'kms_writeback', 'meta_test', + 'nouveau_crc', 'panfrost_get_param', 'panfrost_gem_new', 'panfrost_prime', diff --git a/tests/nouveau_crc.c b/tests/nouveau_crc.c new file mode 100644 index 00000000..f8705b5e --- /dev...
2020 Apr 17
10
[PATCH i-g-t v3 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that) So, this series adds the relevant tests for it since nvidia's CRC
2020 Sep 29
1
[igt-dev] [PATCH i-g-t v4] tests: Add nouveau-crc tests
...; +bool is_nouveau_device(int fd); > > bool is_vc4_device(int fd); > > > > /** > > diff --git a/tests/meson.build b/tests/meson.build > > index 684de043..92647991 100644 > > --- a/tests/meson.build > > +++ b/tests/meson.build > > @@ -74,6 +74,7 @@ test_progs = [ > > 'kms_vblank', > > 'kms_vrr', > > 'meta_test', > > + 'nouveau_crc', > > 'panfrost_get_param', > > 'panfrost_gem_new', > > 'panfrost_prime', > > diff --git a/tests/nouveau_crc.c...
2020 Sep 28
0
[igt-dev] [PATCH i-g-t v4] tests: Add nouveau-crc tests
...; > bool is_i915_device(int fd); > +bool is_nouveau_device(int fd); > bool is_vc4_device(int fd); > > /** > diff --git a/tests/meson.build b/tests/meson.build > index 684de043..92647991 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -74,6 +74,7 @@ test_progs = [ > 'kms_vblank', > 'kms_vrr', > 'meta_test', > + 'nouveau_crc', > 'panfrost_get_param', > 'panfrost_gem_new', > 'panfrost_prime', > diff --git a/tests/nouveau_crc.c b/tests/nouveau_crc.c > new file mod...
2020 Apr 17
5
[PATCH i-g-t v2 0/5] Add nouveau-crc tests
From: Lyude Paul <lyude at redhat.com> (Just forwarding this to nouveau's ml, since I completely forgot to before) Nouveau has finally gotten CRC support, hooray! Well, it's under review at least: https://patchwork.freedesktop.org/series/74804/ (it has a cover letter, but nouveau's mailing list configuration has blocked the email so I'm waiting for a moderator to fix that)
2013 Apr 24
12
[PATCH 00/12] Various patches for fixing separated builds.
This just fixes 'make'. 'make check' is still broken. Further patches for that to follow tomorrow. Rich.
2023 May 09
5
[Bridge] [RFC PATCH net-next 0/5] Add layer 2 miss indication and filtering
tl;dr ===== This patchset adds a single bit to the skb to indicate that a packet encountered a layer 2 miss in the bridge and extends flower to match on this metadata. This is required for non-DF (Designated Forwarder) filtering in EVPN multi-homing which prevents decapsulated BUM packets from being forwarded multiple times to the same multi-homed host. Background ========== In a typical EVPN
2023 May 18
5
[Bridge] [PATCH net-next 0/5] Add layer 2 miss indication and filtering
tl;dr ===== This patchset adds a single bit to the skb to indicate that a packet encountered a layer 2 miss in the bridge and extends flower to match on this metadata. This is required for non-DF (Designated Forwarder) filtering in EVPN multi-homing which prevents decapsulated BUM packets from being forwarded multiple times to the same multi-homed host. Background ========== In a typical EVPN
2012 Mar 28
2
[PATCH v2] New APIs: mount-local and umount-local using FUSE
This version doesn't crash or cause hung processes or stuck mountpoints, so that's an improvement. Rich.
2012 Mar 27
3
[PATCH 0/3] Enable FUSE support in the API via 'mount-local' call.
This patch is just for review. It enables FUSE support in the API via two new calls, 'guestfs_mount_local' and 'guestfs_umount_local'. FUSE turns out to be very easy to deadlock (necessitating that the machine be rebooted). Running the test from the third patch is usually an effective way to demonstrate this. However I have not yet managed to produce a simple reproducer that
2012 Mar 29
3
[PATCH v3] New APIs: mount-local, mount-local-run and umount-local using FUSE
This changes the proposed API slightly. Previously 'mount-local' generating a 'mounted' event when the filesystem was ready, and from the 'mounted' event you had to effectively do a fork. Now, 'mount-local' just initializes the mountpoint and you have to call 'mount-local-run' to enter the FUSE main loop. Between these calls you can do a fork or whatever