search for: pipe_test

Displaying 11 results from an estimated 11 matches for "pipe_test".

2008 May 11
4
Latest rb_win32_select patch
...a"*2048 end end t.join At the console I typed the word "world", let it run for a bit, then hit Ctrl-C. It mostly seems to work. Here was the difference between Ruby with your patch and JRuby 1.1.1. # Ruby 1.8.6-114 with patch C:\Documents and Settings\djberge\workspace>ruby pipe_test.rb hello from main hello from main hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes hello from main got 2049 bytes pipe_test.rb:14:...
2020 Mar 18
0
[PATCH i-g-t 4/4] tests: Add nouveau-crc tests
...ors(data, colors, n_colors, pipe_crc); + + /* Changing the color should not change what's outside the active raster */ + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); + + igt_pipe_crc_free(pipe_crc); + destroy_colors(data, colors, n_colors); +} + +data_t data = {0, }; + +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, kmstest_pipe_name(pipe)) +igt_main +{ + int pipe; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require_nouveau(data.drm_fd); + + kmstest_set_vt_graphics_mode(); + + igt_require_pipe_crc(data.drm_fd); + igt_display_re...
2020 Apr 17
0
[PATCH i-g-t v3 5/5] tests: Add nouveau-crc tests
...ors(data, colors, n_colors, pipe_crc); + + /* Changing the color should not change what's outside the active raster */ + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); + + igt_pipe_crc_free(pipe_crc); + destroy_colors(data, colors, n_colors); +} + +data_t data = {0, }; + +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, kmstest_pipe_name(pipe)) +igt_main +{ + int pipe; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require_nouveau(data.drm_fd); + + kmstest_set_vt_graphics_mode(); + + igt_require_pipe_crc(data.drm_fd); + igt_display_re...
2020 Aug 18
2
[PATCH i-g-t v4] tests: Add nouveau-crc tests
...ors(data, colors, n_colors, pipe_crc); + + /* Changing the color should not change what's outside the active raster */ + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); + + igt_pipe_crc_free(pipe_crc); + destroy_colors(data, colors, n_colors); +} + +data_t data = {0, }; + +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, kmstest_pipe_name(pipe)) +igt_main +{ + int pipe; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require_nouveau(data.drm_fd); + + kmstest_set_vt_graphics_mode(); + + igt_require_pipe_crc(data.drm_fd); + igt_display_re...
2020 Sep 30
0
[PATCH i-g-t v5 5/5] tests: Add nouveau-crc tests
...s(data, colors, n_colors, pipe_crc); + + /* Changing the color should not change what's outside the active raster */ + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); + + igt_pipe_crc_free(pipe_crc); + destroy_crc_colors(data, colors, n_colors); +} + +data_t data = {0}; + +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, kmstest_pipe_name(pipe)) +igt_main +{ + int pipe; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_ANY); + igt_require_nouveau(data.drm_fd); + + kmstest_set_vt_graphics_mode(); + + igt_require_pipe_crc(data.drm_fd); + igt_display_re...
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
...e the active > > raster */ > > + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); > > + > > + igt_pipe_crc_free(pipe_crc); > > + destroy_colors(data, colors, n_colors); > > +} > > + > > +data_t data = {0, }; > > + > > +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, > > kmstest_pipe_name(pipe)) > > +igt_main > > +{ > > + int pipe; > > + > > + igt_fixture { > > + data.drm_fd = drm_open_driver_master(DRIVER_ANY); > > + igt_require_nouveau(data.drm_fd); > > + &g...
2020 Sep 28
0
[igt-dev] [PATCH i-g-t v4] tests: Add nouveau-crc tests
...Changing the color should not change what's outside the active raster */ > + igt_assert_crc_equal(&colors[0].crc, &colors[1].crc); > + > + igt_pipe_crc_free(pipe_crc); > + destroy_colors(data, colors, n_colors); > +} > + > +data_t data = {0, }; > + > +#define pipe_test(name) igt_subtest_f("pipe-%s-" name, kmstest_pipe_name(pipe)) > +igt_main > +{ > + int pipe; > + > + igt_fixture { > + data.drm_fd = drm_open_driver_master(DRIVER_ANY); > + igt_require_nouveau(data.drm_fd); > + > + kmstest_set_vt_graphics_mode(); > + >...
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)
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 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