search for: igt_core

Displaying 20 results from an estimated 22 matches for "igt_core".

2020 Mar 18
0
[PATCH i-g-t 1/4] lib/igt_core: Add igt_require_fd()
From: Lyude Paul <lyude at redhat.com> Like igt_assert_fd(), but using igt_require() instead Signed-off-by: Lyude Paul <lyude at redhat.com> --- lib/igt_core.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/igt_core.h b/lib/igt_core.h index fae5f59e..b66336cf 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1008,6 +1008,18 @@ void igt_describe_f(const char *fmt, ...); else igt_debug("Test requirement passed: %s\n",...
2020 Apr 17
0
[PATCH i-g-t v3 1/5] lib/igt_core: Fix igt_assert_fd() documentation
From: Lyude Paul <lyude at redhat.com> As Petri Latvala pointed out, some of the documentation in this macro is mistakenly copied from the other igt_assert*() macros. Let's fix that. Signed-off-by: Lyude Paul <lyude at redhat.com> --- lib/igt_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/igt_core.h b/lib/igt_core.h index b97fa2fa..3f69b072 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -966,8 +966,8 @@ void igt_describe_f(const char *fmt, ...); * * Fails (sub-) test if the given file descriptor i...
2020 Apr 17
0
[PATCH i-g-t v3 2/5] lib/igt_core: Add igt_require_fd()
From: Lyude Paul <lyude at redhat.com> Like igt_assert_fd(), but using igt_require() instead Changes since v1: * Fix documentation error in igt_require_fd() - Petri Latvala Signed-off-by: Lyude Paul <lyude at redhat.com> --- lib/igt_core.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/igt_core.h b/lib/igt_core.h index 3f69b072..8f68b2dd 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1021,6 +1021,18 @@ void igt_describe_f(const char *fmt, ...); else igt_debug("Test requirement passed: %s\n",...
2020 Sep 30
0
[PATCH i-g-t v5 1/5] lib/igt_core: Fix igt_assert_fd() documentation
From: Lyude Paul <lyude at redhat.com> As Petri Latvala pointed out, some of the documentation in this macro is mistakenly copied from the other igt_assert*() macros. Let's fix that. Signed-off-by: Lyude Paul <lyude at redhat.com> --- lib/igt_core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/igt_core.h b/lib/igt_core.h index c5871520..e74ede8b 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -966,8 +966,8 @@ void igt_describe_f(const char *fmt, ...); * * Fails (sub-) test if the given file descriptor i...
2020 Sep 30
0
[PATCH i-g-t v5 2/5] lib/igt_core: Add igt_require_fd()
From: Lyude Paul <lyude at redhat.com> Like igt_assert_fd(), but using igt_require() instead Changes since v1: * Fix documentation error in igt_require_fd() - Petri Latvala Signed-off-by: Lyude Paul <lyude at redhat.com> --- lib/igt_core.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/igt_core.h b/lib/igt_core.h index e74ede8b..5d835260 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -1021,6 +1021,18 @@ void igt_describe_f(const char *fmt, ...); else igt_debug("Test requirement passed: %s\n",...
2020 Sep 30
9
[PATCH i-g-t v5 0/5] Add nouveau-crc tests
...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 lib/igt_core: Add igt_require_fd() lib/igt_debugfs: Add igt_debugfs_pipe_dir() lib/igt_kms: Hook up connector dithering prop tests: Add nouveau-crc tests .gitlab-ci.yml | 2 +- lib/drmtest.c | 10 ++ lib/drmtest.h | 2 + lib/igt_cor...
2020 Apr 17
5
[PATCH i-g-t v2 0/5] Add nouveau-crc tests
...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 implementation has some rather interesting design choices that needed to be worked around. Lyude Paul (5): lib/igt_core: Fix igt_assert_fd() documentation lib/igt_core: Add igt_require_fd() lib/igt_debugfs: Add igt_debugfs_pipe_dir() lib/igt_kms: Hook up connector dithering prop tests: Add nouveau-crc tests lib/drmtest.c | 10 ++ lib/drmtest.h | 2 + lib/igt_core.h | 16 +- lib/igt_deb...
2020 Apr 17
10
[PATCH i-g-t v3 0/5] Add nouveau-crc tests
...ome rather interesting design choices that needed to be worked around. Changes since v2: * Fix build errors on mips/arm/aarch64 Changes since v1: * fix documentation errors Petri pointed out * Fix documentation for igt_require_fd() * Fix copyright year in tests/nouveau_crc.c Lyude Paul (5): lib/igt_core: Fix igt_assert_fd() documentation lib/igt_core: Add igt_require_fd() lib/igt_debugfs: Add igt_debugfs_pipe_dir() lib/igt_kms: Hook up connector dithering prop tests: Add nouveau-crc tests lib/drmtest.c | 10 ++ lib/drmtest.h | 2 + lib/igt_core.h | 16 +- lib/igt_deb...
2020 Mar 18
6
[PATCH i-g-t 0/4] Add nouveau-crc tests
...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 implementation has some rather interesting design choices that needed to be worked around. Lyude Paul (4): lib/igt_core: Add igt_require_fd() lib/igt_debugfs: Add igt_debugfs_pipe_dir() lib/igt_kms: Hook up connector dithering prop tests: Add nouveau-crc tests lib/drmtest.c | 10 ++ lib/drmtest.h | 2 + lib/igt_core.h | 12 ++ lib/igt_debugfs.c | 29 ++++ lib/igt_debugfs.h | 1 +...
2017 Oct 04
0
[ANNOUNCE] intel-gpu-tools 1.20
...tion about the required hardware setup for audio testing. (Paul Kocialkowski) Tests changes: - Converted remaining shell-script tests to C code (Abdiel Janulgue) - Multiple new tests. And many other bug fixes and improvements. And the full changelog follows: Abdiel Janulgue (8): lib/igt_core: Add igt_system helpers igt/igt_core: Provide an option to check for the log buffer contents Convert debugfs shell tests to C version Convert tools shell tests to C version igt/debugfs_test: Skip dummy reads for crtc-n/crc/data Revert "igt/debugfs_test: Skip dummy...
2015 Dec 02
0
[ANNOUNCE] intel-gpu-tools 1.13
...pagefault on destination buffer igt/drm_read: Clear O_NONBLOCK between tests igt/gem_cs_prefetch: Convert to intel_require_memory() benchmarks/gem_exec_ctx: Measure switching between fds lib: gem_set_caching() use drmIoctl() rather than ioctl() Daniel Stone (10): lib/igt_core: Add igt_assert_neq_*() variants lib/igt_core: Add igt_assert_fd lib/igt.cocci: Add greater-than to igt_assert_lt* lib/drmtest: Add do_ioctl_err to expect failure lib/igt.cocci: De-opencode ioctls tests: Add blob-property test lib/tests: Add igt_assert_*() self-t...
2016 Mar 01
0
[ANNOUNCE] intel-gpu-tools 1.14
...ower management testing helpers (David Weinehall) - lig/igt_vc4: VC4 support library (Eric Anholt) - kms_frontbuffer_tracking: included in BAT (Paulo Zanoni) - kms_psr_sink_crc: Add BAT test for PSR active (Rodrigo Vivi) - gem_wait: test superseded by gem_latency in benchmarks (Chris Wilson) - igt_core: Fix logging to display extended line (Derek Morton) - igt_core: Expand --run-subtest functionality (Derek Morton) - kms_force_connector_basic: various fixes and included in BAT set (Daniel Vetter) - Many other improvements and bug fixes. Full changelog follows: Ankitprasad Sharma (3): i...
2015 Mar 12
0
[ANNOUNCE] intel-gpu-tools 1.10
...doc: Consolidate naming conventions into docbook lib/igt_gt: Document and consolidate tests/gem_ctx_param_basic: Include header, not source tests/drv_suspend: Unrename tests tests/kms_universal_planes: Inline igt_assert(ret == 0) checks lib: add igt_assert_lt lib/igt_core: don't add newlines in logging functions tests/gem_tiled_swapping: Skip on L-shaped memory NEWS: Update to prep for release David Weinehall (1): tests/drv_suspend: hibernation test Deepak S (2): tests/pm_rc6_residency: Fix proper residency calculation tests/pm_rc...
2016 Sep 02
0
[ANNOUNCE] intel-gpu-tools 1.16
...tests: Push igt_fork/stop_hang_detector into fixtures lib: Update docs for igt_sysfs.c lib: update docs for igt_debugfs lib/debugs: nuke igt_crc_equal again lib: Update docs for igt_fb lib: update docs for igt_pm lib: Update docs for igt_stats lib: Update igt_core docs docs: pull in VC4 docs lib: Update igt_chipset docs lib: Update ioctl_wrappers functions docs: minimal docs for igt_vgem.c Derek Morton (1): gem_largeobject: Fix for clang compiler Eric Anholt (1): vc4: Add a test for BO lookup failure error path. Gustavo...
2015 Sep 11
0
[ANNOUNCE] intel-gpu-tools 1.12
...ng: rename set_screens_for_test tests/kms_frontbuffer_tracking: add modesetfrombusy test kms_frontbuffer_tracking: remove offscreen-{cur,spr} subtests kms_frontbuffer_tracking: use CPU mmaps for fill_fb_region() kms_frontbuffer_tracking: GTT mmap writes disable PSR lib/igt_core: fflush stdout after printing subtest results lib/igt_draw: move to the GTT domain before using GTT mmaps pm_rpm: remove pm_status_fd declaration kms_frontbuffer_tracking: don't hardcode the X/Y big FB offset kms_frontbuffer_tracking: avoid huge strides during normal ope...
2015 Jun 11
0
[ANNOUNCE] intel-gpu-tools 1.11
...coded ring id David Herrmann (1): tests: add drm_auth tests for generic DRM-auth-magic testing Derek Morton (4): tests/gem_cpu_reloc: Fix gem_cpu_reloc OOM failure tests/Android.mk: Treat all KMS tests as Cairo dependent lib: Enable building unit tests on android lib/igt_core.c: Flag the test as failing after a segfault Imre Deak (14): tools/intel_bios_reader: fix SSC freq for VLV/CHV lib/intel_chipset: fix HAS_PCH_SPLIT on CHV lib/intel_chipset: fix HAS_PCH_SPLIT on GEN9 tools/intel_bios_read: fix SSC freq for BXT tools/intel_reg_dumper:...
2016 May 31
0
[ANNOUNCE] intel-gpu-tools 1.15
...igt/kms_cursor_legacy: Stress each CRTC individually as well igt/kms_cursor_legacy: Fixup !fixture Daniel Vetter (16): lib/igt_kms: Don't disable exit handlers around set_vt_mode tests/kms_mmap_write_crc: Use the right fork helpers gitignore: Add .dirstamp lib/igt_core: remove igt_disable/enable_exit_handlers lib: Unit test for exit handler lib: remove saved_sig_mask tests/gem_reloc_overflow: Add missing igt_fixture lib: Add igt_subtest_group tests/gem_concurrent_blt|all: Use igt_subtest_group lib: Fix some doc warnings l...
2016 Dec 02
1
[ANNOUNCE] intel-gpu-tools 1.17
...r sprite planes on earlier platforms. kms_panel_fitting: Add some more tests for fastset testing. kms_atomic_transition: Add test timeout to run_modeset_tests kms_atomic_transition: Fix compile kms_atomic_transition: Only run tests on valid pipes. Marius Vlad (5): lib/igt_core: Print stacktrace in initialization/fixture blocks. lib/igt_kmod: New library to support driver loading/unloading and additional helpers. lib/igt_gvt: Make use of libkmod helpers and fix reading gvt parameter. tests/drv_module_reload: Convert sh script to C version. tests/km...
2020 Mar 20
0
[ANNOUNCE] igt-gpu-tools 1.25
...ure that intervals_left is always initialized runner/resultgen: Don't pass NULL to str*() functions runner/settings: Be consistent with empty blacklist tests/amdgpu: Build amd_bypass test with autotools Dockerfile.fedora: Download peg source from our own mirror lib/igt_core: Add support for subtest descriptions tests/kms_hdmi_inject: Provide igt_descriptions tests/kms_plane_multiple: Describe the test CONTRIBUTING: Rework a bit and update docs: Embed subtest descriptions in the documentation runner: Make sure we don't close watchdogs...
2018 Aug 08
0
[ANNOUNCE] igt-gpu-tools 1.23
...run-tests.sh: allow to run without sudo run-tests.sh: allow relative IGT_TEST_ROOT and IGT_CONFIG_PATH README: clarify comment about tests run-tests.sh: use meson build by default tests/sw_sync: fix pthread start_routine declaration build: bump c std to gnu11 lib/igt_core: fix check for running under gdb lib/igt_kms: simplify pipe <-> name conversion Lukasz Kalamarz (8): lib/surfacestate: Creating surfaceformat header lib: Rename all surfaceformat calls in libs libs: Removal of duplicated SURFACEFORMAT definitions lib/gen7_render...