igt-dev.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place
@ 2018-08-13 10:26 Arkadiusz Hiler
  2018-08-13 10:26 ` [igt-dev] [PATCH i-g-t 2/2] runner/meson: Add support for use_rpath option Arkadiusz Hiler
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2018-08-13 10:26 UTC (permalink / raw)
  To: igt-dev

So they are located close to the definitions of the corresponding
install_dirs and can be reused easily.

Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 meson.build              | 38 ++++++++++++++++++++++++++++++++++++++
 tests/amdgpu/meson.build | 26 +-------------------------
 tests/meson.build        | 22 ----------------------
 tools/meson.build        | 32 +++++---------------------------
 4 files changed, 44 insertions(+), 74 deletions(-)

diff --git a/meson.build b/meson.build
index d45db9ac..7278c438 100644
--- a/meson.build
+++ b/meson.build
@@ -221,9 +221,47 @@ datadir = join_paths(get_option('datadir'), 'igt-gpu-tools')
 includedir = get_option('includedir')
 libdir = get_option('libdir')
 libexecdir = join_paths(get_option('libexecdir'), 'igt-gpu-tools')
+amdgpudir = join_paths(libexecdir, 'amdgpu')
 mandir = get_option('mandir')
 pkgconfigdir = join_paths(libdir, 'pkgconfig')
 
+if get_option('use_rpath')
+	# Set up runpath for the test executables towards libigt.so.
+	# The path should be relative to $ORIGIN so the library is
+	# still found properly even if installed to a path other than
+	# prefix.
+
+	# libdir and bindir are pathnames relative to prefix. meson
+	# enforces this.
+
+	# 1. Start from the executable.
+	# 2. Executables are installed in certain dir. Add a .. for each
+	#    directory name in it.
+	# 3. Add relative path to libdir.
+
+	bindir_rpathdir = '$ORIGIN'
+	foreach p : bindir.split('/')
+		bindir_rpathdir = join_paths(bindir_rpathdir, '..')
+	endforeach
+	bindir_rpathdir = join_paths(bindir_rpathdir, libdir)
+
+	libexecdir_rpathdir = '$ORIGIN'
+	foreach p : libexecdir.split('/')
+		libexecdir_rpathdir = join_paths(libexecdir_rpathdir, '..')
+	endforeach
+	libexecdir_rpathdir = join_paths(libexecdir_rpathdir, libdir)
+
+	amdgpudir_rpathdir = '$ORIGIN'
+	foreach p : amdgpudir.split('/')
+		amdgpudir_rpathdir = join_paths(amdgpudir_rpathdir, '..')
+	endforeach
+	amdgpudir_rpathdir = join_paths(amdgpudir_rpathdir, libdir)
+else
+	bindir_rpathdir = ''
+	libexecdir_rpathdir = ''
+	amdgpudir_rpathdir = ''
+endif
+
 subdir('lib')
 if _build_tests
 	subdir('tests')
diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
index 15cfb2b5..566e851b 100644
--- a/tests/amdgpu/meson.build
+++ b/tests/amdgpu/meson.build
@@ -9,35 +9,11 @@ if libdrm_amdgpu.found()
 	amdgpu_deps += libdrm_amdgpu
 endif
 
-amdgpudir = join_paths(libexecdir, 'amdgpu')
-
-if get_option('use_rpath')
-	# Set up runpath for the test executables towards libigt.so.
-	# The path should be relative to $ORIGIN so the library is
-	# still found properly even if installed to a path other than
-	# prefix.
-
-	# libdir and libexecdir are pathnames relative to
-	# prefix. meson enforces this.
-
-	# Start from the executable
-	amdgpu_rpathdir = '$ORIGIN'
-	# Executables are installed in amdgpudir. Add a .. for each
-	# directory name in it.
-	foreach p : amdgpudir.split('/')
-		amdgpu_rpathdir = join_paths(amdgpu_rpathdir, '..')
-	endforeach
-	# Add relative path to libdir
-	amdgpu_rpathdir = join_paths(amdgpu_rpathdir, libdir)
-else
-	amdgpu_rpathdir = ''
-endif
-
 foreach prog : amdgpu_progs
 	test_executables += executable(prog, prog + '.c',
 				       dependencies : amdgpu_deps,
 				       install_dir : amdgpudir,
-				       install_rpath : amdgpu_rpathdir,
+				       install_rpath : amdgpudir_rpathdir,
 				       install : true)
 	test_progs += join_paths('amdgpu', prog)
 endforeach
diff --git a/tests/meson.build b/tests/meson.build
index bb6c7627..17deb945 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -239,28 +239,6 @@ if _build_audio and alsa.found() and gsl.found()
 	test_deps += alsa
 endif
 
-if get_option('use_rpath')
-	# Set up runpath for the test executables towards libigt.so.
-	# The path should be relative to $ORIGIN so the library is
-	# still found properly even if installed to a path other than
-	# prefix.
-
-	# libdir and libexecdir are pathnames relative to
-	# prefix. meson enforces this.
-
-	# Start from the executable
-	libexecdir_rpathdir = '$ORIGIN'
-	# Executables are installed in libexecdir. Add a .. for each
-	# directory name in it.
-	foreach p : libexecdir.split('/')
-		libexecdir_rpathdir = join_paths(libexecdir_rpathdir, '..')
-	endforeach
-	# Add relative path to libdir
-	libexecdir_rpathdir = join_paths(libexecdir_rpathdir, libdir)
-else
-	libexecdir_rpathdir = ''
-endif
-
 test_executables = []
 
 foreach prog : test_progs
diff --git a/tools/meson.build b/tools/meson.build
index ae9ba493..e4517d66 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -49,32 +49,10 @@ if libdrm_intel.found()
 	tool_deps += zlib
 endif
 
-if get_option('use_rpath')
-	# Set up runpath for the test executables towards libigt.so.
-	# The path should be relative to $ORIGIN so the library is
-	# still found properly even if installed to a path other than
-	# prefix.
-
-	# libdir and bindir are pathnames relative to prefix. meson
-	# enforces this.
-
-	# Start from the executable
-	tools_rpathdir = '$ORIGIN'
-	# Executables are installed in bindir. Add a .. for each
-	# directory name in it.
-	foreach p : bindir.split('/')
-		tools_rpathdir = join_paths(tools_rpathdir, '..')
-	endforeach
-	# Add relative path to libdir
-	tools_rpathdir = join_paths(tools_rpathdir, libdir)
-else
-	tools_rpathdir = ''
-endif
-
 foreach prog : tools_progs
 	executable(prog, prog + '.c',
 		   dependencies : tool_deps,
-		   install_rpath : tools_rpathdir,
+		   install_rpath : bindir_rpathdir,
 		   install : true)
 endforeach
 
@@ -85,21 +63,21 @@ if libudev.found()
 	]
 	executable('intel_dp_compliance', sources : intel_dp_compliance_src,
 		   dependencies : [tool_deps, libudev],
-		   install_rpath : tools_rpathdir,
+		   install_rpath : bindir_rpathdir,
 		   install : true)
 endif
 
 intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ]
 executable('intel_l3_parity', sources : intel_l3_parity_src,
 	   dependencies : tool_deps,
-	   install_rpath : tools_rpathdir,
+	   install_rpath : bindir_rpathdir,
 	   install : true)
 
 intel_reg_src = [ 'intel_reg.c', 'intel_reg_decode.c', 'intel_reg_spec.c' ]
 executable('intel_reg', sources : intel_reg_src,
 	   dependencies : tool_deps,
 	   install : true,
-	   install_rpath : tools_rpathdir,
+	   install_rpath : bindir_rpathdir,
 	   c_args : [
 	     '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)),
 	   ])
@@ -118,7 +96,7 @@ shared_library('intel_aubdump', 'aubdump.c',
 
 executable('intel_gpu_top', 'intel_gpu_top.c',
 	   install : true,
-	   install_rpath : tools_rpathdir,
+	   install_rpath : bindir_rpathdir,
 	   dependencies : tool_deps + [ lib_igt_perf ])
 
 conf_data = configuration_data()
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] runner/meson: Add support for use_rpath option
  2018-08-13 10:26 [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Arkadiusz Hiler
@ 2018-08-13 10:26 ` Arkadiusz Hiler
  2018-08-13 10:30 ` [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Petri Latvala
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2018-08-13 10:26 UTC (permalink / raw)
  To: igt-dev

Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 runner/meson.build | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/runner/meson.build b/runner/meson.build
index bea1d897..6c4b4862 100644
--- a/runner/meson.build
+++ b/runner/meson.build
@@ -22,18 +22,21 @@ if _build_runner and jsonc.found()
 			    link_with : runnerlib,
 			    install : true,
 			    install_dir : bindir,
+			    install_rpath : bindir_rpathdir,
 			    dependencies : igt_deps)
 
 	resume = executable('igt_resume', resume_sources,
 			    link_with : runnerlib,
 			    install : true,
 			    install_dir : bindir,
+			    install_rpath : bindir_rpathdir,
 			    dependencies : igt_deps)
 
 	results = executable('igt_results', results_sources,
 			     link_with : runnerlib,
 			     install : true,
 			     install_dir : bindir,
+			     install_rpath : bindir_rpathdir,
 			     dependencies : igt_deps)
 
 	runner_test = executable('runner_test', runner_test_sources,
-- 
2.17.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place
  2018-08-13 10:26 [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Arkadiusz Hiler
  2018-08-13 10:26 ` [igt-dev] [PATCH i-g-t 2/2] runner/meson: Add support for use_rpath option Arkadiusz Hiler
@ 2018-08-13 10:30 ` Petri Latvala
  2018-08-13 10:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
  2018-08-13 12:09 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2018-08-13 10:30 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

On Mon, Aug 13, 2018 at 01:26:12PM +0300, Arkadiusz Hiler wrote:
> So they are located close to the definitions of the corresponding
> install_dirs and can be reused easily.
> 
> Cc: Petri Latvala <petri.latvala@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>




For the series,

Reviewed-by: Petri Latvala <petri.latvala@intel.com>



> ---
>  meson.build              | 38 ++++++++++++++++++++++++++++++++++++++
>  tests/amdgpu/meson.build | 26 +-------------------------
>  tests/meson.build        | 22 ----------------------
>  tools/meson.build        | 32 +++++---------------------------
>  4 files changed, 44 insertions(+), 74 deletions(-)
> 
> diff --git a/meson.build b/meson.build
> index d45db9ac..7278c438 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -221,9 +221,47 @@ datadir = join_paths(get_option('datadir'), 'igt-gpu-tools')
>  includedir = get_option('includedir')
>  libdir = get_option('libdir')
>  libexecdir = join_paths(get_option('libexecdir'), 'igt-gpu-tools')
> +amdgpudir = join_paths(libexecdir, 'amdgpu')
>  mandir = get_option('mandir')
>  pkgconfigdir = join_paths(libdir, 'pkgconfig')
>  
> +if get_option('use_rpath')
> +	# Set up runpath for the test executables towards libigt.so.
> +	# The path should be relative to $ORIGIN so the library is
> +	# still found properly even if installed to a path other than
> +	# prefix.
> +
> +	# libdir and bindir are pathnames relative to prefix. meson
> +	# enforces this.
> +
> +	# 1. Start from the executable.
> +	# 2. Executables are installed in certain dir. Add a .. for each
> +	#    directory name in it.
> +	# 3. Add relative path to libdir.
> +
> +	bindir_rpathdir = '$ORIGIN'
> +	foreach p : bindir.split('/')
> +		bindir_rpathdir = join_paths(bindir_rpathdir, '..')
> +	endforeach
> +	bindir_rpathdir = join_paths(bindir_rpathdir, libdir)
> +
> +	libexecdir_rpathdir = '$ORIGIN'
> +	foreach p : libexecdir.split('/')
> +		libexecdir_rpathdir = join_paths(libexecdir_rpathdir, '..')
> +	endforeach
> +	libexecdir_rpathdir = join_paths(libexecdir_rpathdir, libdir)
> +
> +	amdgpudir_rpathdir = '$ORIGIN'
> +	foreach p : amdgpudir.split('/')
> +		amdgpudir_rpathdir = join_paths(amdgpudir_rpathdir, '..')
> +	endforeach
> +	amdgpudir_rpathdir = join_paths(amdgpudir_rpathdir, libdir)
> +else
> +	bindir_rpathdir = ''
> +	libexecdir_rpathdir = ''
> +	amdgpudir_rpathdir = ''
> +endif
> +
>  subdir('lib')
>  if _build_tests
>  	subdir('tests')
> diff --git a/tests/amdgpu/meson.build b/tests/amdgpu/meson.build
> index 15cfb2b5..566e851b 100644
> --- a/tests/amdgpu/meson.build
> +++ b/tests/amdgpu/meson.build
> @@ -9,35 +9,11 @@ if libdrm_amdgpu.found()
>  	amdgpu_deps += libdrm_amdgpu
>  endif
>  
> -amdgpudir = join_paths(libexecdir, 'amdgpu')
> -
> -if get_option('use_rpath')
> -	# Set up runpath for the test executables towards libigt.so.
> -	# The path should be relative to $ORIGIN so the library is
> -	# still found properly even if installed to a path other than
> -	# prefix.
> -
> -	# libdir and libexecdir are pathnames relative to
> -	# prefix. meson enforces this.
> -
> -	# Start from the executable
> -	amdgpu_rpathdir = '$ORIGIN'
> -	# Executables are installed in amdgpudir. Add a .. for each
> -	# directory name in it.
> -	foreach p : amdgpudir.split('/')
> -		amdgpu_rpathdir = join_paths(amdgpu_rpathdir, '..')
> -	endforeach
> -	# Add relative path to libdir
> -	amdgpu_rpathdir = join_paths(amdgpu_rpathdir, libdir)
> -else
> -	amdgpu_rpathdir = ''
> -endif
> -
>  foreach prog : amdgpu_progs
>  	test_executables += executable(prog, prog + '.c',
>  				       dependencies : amdgpu_deps,
>  				       install_dir : amdgpudir,
> -				       install_rpath : amdgpu_rpathdir,
> +				       install_rpath : amdgpudir_rpathdir,
>  				       install : true)
>  	test_progs += join_paths('amdgpu', prog)
>  endforeach
> diff --git a/tests/meson.build b/tests/meson.build
> index bb6c7627..17deb945 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -239,28 +239,6 @@ if _build_audio and alsa.found() and gsl.found()
>  	test_deps += alsa
>  endif
>  
> -if get_option('use_rpath')
> -	# Set up runpath for the test executables towards libigt.so.
> -	# The path should be relative to $ORIGIN so the library is
> -	# still found properly even if installed to a path other than
> -	# prefix.
> -
> -	# libdir and libexecdir are pathnames relative to
> -	# prefix. meson enforces this.
> -
> -	# Start from the executable
> -	libexecdir_rpathdir = '$ORIGIN'
> -	# Executables are installed in libexecdir. Add a .. for each
> -	# directory name in it.
> -	foreach p : libexecdir.split('/')
> -		libexecdir_rpathdir = join_paths(libexecdir_rpathdir, '..')
> -	endforeach
> -	# Add relative path to libdir
> -	libexecdir_rpathdir = join_paths(libexecdir_rpathdir, libdir)
> -else
> -	libexecdir_rpathdir = ''
> -endif
> -
>  test_executables = []
>  
>  foreach prog : test_progs
> diff --git a/tools/meson.build b/tools/meson.build
> index ae9ba493..e4517d66 100644
> --- a/tools/meson.build
> +++ b/tools/meson.build
> @@ -49,32 +49,10 @@ if libdrm_intel.found()
>  	tool_deps += zlib
>  endif
>  
> -if get_option('use_rpath')
> -	# Set up runpath for the test executables towards libigt.so.
> -	# The path should be relative to $ORIGIN so the library is
> -	# still found properly even if installed to a path other than
> -	# prefix.
> -
> -	# libdir and bindir are pathnames relative to prefix. meson
> -	# enforces this.
> -
> -	# Start from the executable
> -	tools_rpathdir = '$ORIGIN'
> -	# Executables are installed in bindir. Add a .. for each
> -	# directory name in it.
> -	foreach p : bindir.split('/')
> -		tools_rpathdir = join_paths(tools_rpathdir, '..')
> -	endforeach
> -	# Add relative path to libdir
> -	tools_rpathdir = join_paths(tools_rpathdir, libdir)
> -else
> -	tools_rpathdir = ''
> -endif
> -
>  foreach prog : tools_progs
>  	executable(prog, prog + '.c',
>  		   dependencies : tool_deps,
> -		   install_rpath : tools_rpathdir,
> +		   install_rpath : bindir_rpathdir,
>  		   install : true)
>  endforeach
>  
> @@ -85,21 +63,21 @@ if libudev.found()
>  	]
>  	executable('intel_dp_compliance', sources : intel_dp_compliance_src,
>  		   dependencies : [tool_deps, libudev],
> -		   install_rpath : tools_rpathdir,
> +		   install_rpath : bindir_rpathdir,
>  		   install : true)
>  endif
>  
>  intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ]
>  executable('intel_l3_parity', sources : intel_l3_parity_src,
>  	   dependencies : tool_deps,
> -	   install_rpath : tools_rpathdir,
> +	   install_rpath : bindir_rpathdir,
>  	   install : true)
>  
>  intel_reg_src = [ 'intel_reg.c', 'intel_reg_decode.c', 'intel_reg_spec.c' ]
>  executable('intel_reg', sources : intel_reg_src,
>  	   dependencies : tool_deps,
>  	   install : true,
> -	   install_rpath : tools_rpathdir,
> +	   install_rpath : bindir_rpathdir,
>  	   c_args : [
>  	     '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)),
>  	   ])
> @@ -118,7 +96,7 @@ shared_library('intel_aubdump', 'aubdump.c',
>  
>  executable('intel_gpu_top', 'intel_gpu_top.c',
>  	   install : true,
> -	   install_rpath : tools_rpathdir,
> +	   install_rpath : bindir_rpathdir,
>  	   dependencies : tool_deps + [ lib_igt_perf ])
>  
>  conf_data = configuration_data()
> -- 
> 2.17.1
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] meson: Define all the rpath_dirs in one place
  2018-08-13 10:26 [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Arkadiusz Hiler
  2018-08-13 10:26 ` [igt-dev] [PATCH i-g-t 2/2] runner/meson: Add support for use_rpath option Arkadiusz Hiler
  2018-08-13 10:30 ` [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Petri Latvala
@ 2018-08-13 10:54 ` Patchwork
  2018-08-13 12:09 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-08-13 10:54 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] meson: Define all the rpath_dirs in one place
URL   : https://patchwork.freedesktop.org/series/48108/
State : success

== Summary ==

= CI Bug Log - changes from CI_DRM_4642 -> IGTPW_1705 =

== Summary - WARNING ==

  Minor unknown changes coming with IGTPW_1705 need to be verified
  manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1705, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/48108/revisions/1/mbox/

== Possible new issues ==

  Here are the unknown changes that may have been introduced in IGTPW_1705:

  === IGT changes ===

    ==== Warnings ====

    igt@drv_selftest@live_guc:
      fi-kbl-7560u:       PASS -> SKIP +1

    
== Known issues ==

  Here are the changes found in IGTPW_1705 that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    {igt@amdgpu/amd_basic@userptr}:
      {fi-kbl-8809g}:     PASS -> INCOMPLETE (fdo#107402)

    igt@drv_selftest@live_hangcheck:
      fi-kbl-7560u:       PASS -> DMESG-FAIL (fdo#106560, fdo#106947)

    igt@drv_selftest@live_workarounds:
      {fi-cfl-8109u}:     PASS -> DMESG-FAIL (fdo#107292)

    igt@kms_frontbuffer_tracking@basic:
      {fi-byt-clapper}:   PASS -> FAIL (fdo#103167)

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
      fi-bxt-dsi:         PASS -> INCOMPLETE (fdo#103927)

    {igt@kms_psr@sprite_plane_onoff}:
      {fi-bdw-samus}:     NOTRUN -> FAIL (fdo#107360)

    igt@prime_vgem@basic-fence-flip:
      fi-ilk-650:         PASS -> FAIL (fdo#104008)

    
    ==== Possible fixes ====

    igt@drv_selftest@live_workarounds:
      {fi-bsw-kefka}:     DMESG-FAIL (fdo#107292) -> PASS
      fi-bdw-5557u:       DMESG-FAIL (fdo#107292) -> PASS

    
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
  fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
  fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008
  fdo#106560 https://bugs.freedesktop.org/show_bug.cgi?id=106560
  fdo#106947 https://bugs.freedesktop.org/show_bug.cgi?id=106947
  fdo#107292 https://bugs.freedesktop.org/show_bug.cgi?id=107292
  fdo#107360 https://bugs.freedesktop.org/show_bug.cgi?id=107360
  fdo#107402 https://bugs.freedesktop.org/show_bug.cgi?id=107402


== Participating hosts (53 -> 48) ==

  Additional (1): fi-bdw-samus 
  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-glk-j4005 


== Build changes ==

    * IGT: IGT_4591 -> IGTPW_1705

  CI_DRM_4642: 0de4e9a02a422ebe523f59c3b462c949673746b6 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1705: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1705/
  IGT_4591: 6cb3d7dbe5831a7b2b5b7a4638d8a8b7ac624f5f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1705/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] meson: Define all the rpath_dirs in one place
  2018-08-13 10:26 [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Arkadiusz Hiler
                   ` (2 preceding siblings ...)
  2018-08-13 10:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
@ 2018-08-13 12:09 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-08-13 12:09 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] meson: Define all the rpath_dirs in one place
URL   : https://patchwork.freedesktop.org/series/48108/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4591_full -> IGTPW_1705_full =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/48108/revisions/1/mbox/

== Known issues ==

  Here are the changes found in IGTPW_1705_full that come from known issues:

  === IGT changes ===

    ==== Issues hit ====

    igt@drm_import_export@prime:
      shard-snb:          PASS -> INCOMPLETE (fdo#105411)

    igt@gem_exec_schedule@pi-ringfull-render:
      shard-glk:          NOTRUN -> FAIL (fdo#103158)

    igt@kms_cursor_legacy@cursor-vs-flip-toggle:
      shard-hsw:          PASS -> FAIL (fdo#103355)

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
      shard-kbl:          PASS -> INCOMPLETE (fdo#103665)

    igt@kms_setmode@basic:
      shard-apl:          PASS -> FAIL (fdo#99912)
      shard-glk:          NOTRUN -> FAIL (fdo#99912)

    
    ==== Possible fixes ====

    igt@gem_exec_store@basic-blt:
      shard-snb:          INCOMPLETE (fdo#105411) -> PASS

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
      shard-kbl:          INCOMPLETE (fdo#103665) -> PASS

    igt@kms_setmode@basic:
      shard-kbl:          FAIL (fdo#99912) -> PASS

    igt@pm_rpm@i2c:
      shard-apl:          FAIL (fdo#106539) -> PASS
      shard-glk:          FAIL (fdo#106539) -> PASS
      shard-hsw:          FAIL (fdo#106539) -> PASS
      shard-kbl:          FAIL (fdo#106539) -> PASS

    
  fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158
  fdo#103355 https://bugs.freedesktop.org/show_bug.cgi?id=103355
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
  fdo#106539 https://bugs.freedesktop.org/show_bug.cgi?id=106539
  fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912


== Participating hosts (5 -> 5) ==

  No changes in participating hosts


== Build changes ==

    * IGT: IGT_4591 -> IGTPW_1705
    * Linux: CI_DRM_4636 -> CI_DRM_4642

  CI_DRM_4636: 084bb2fb549650b6da80976c9bc594779ce342b4 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4642: 0de4e9a02a422ebe523f59c3b462c949673746b6 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1705: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1705/
  IGT_4591: 6cb3d7dbe5831a7b2b5b7a4638d8a8b7ac624f5f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1705/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-08-13 12:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-13 10:26 [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Arkadiusz Hiler
2018-08-13 10:26 ` [igt-dev] [PATCH i-g-t 2/2] runner/meson: Add support for use_rpath option Arkadiusz Hiler
2018-08-13 10:30 ` [igt-dev] [PATCH i-g-t 1/2] meson: Define all the rpath_dirs in one place Petri Latvala
2018-08-13 10:54 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2018-08-13 12:09 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).