All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/7] Dist cleanups
@ 2017-09-29 12:59 Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 1/7] benchmarks: Add wsim files to dist Petri Latvala
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Distribute files that should be, remove files that shouldn't be even
in git.

Notable inclusion: Meson build system files added to dist. With this
series, both a git checkout and tarball distribution build the same
results with either autotools or meson. Meson support looks to be
mature enough to get tarballed up.

Petri Latvala (7):
  benchmarks: Add wsim files to dist
  benchmarks: Add ezbench.d files to dist
  demos: Remove final file
  lib: Remove media_fill.c
  lib: Handle intel_aub.h like the other stub files
  docs: Distribute audio.txt and chamelium.txt
  meson: Distribute meson build system files

 Makefile.am                      |  5 +++++
 assembler/Makefile.am            |  1 +
 benchmarks/Makefile.am           |  7 ++++++-
 benchmarks/ezbench.d/Makefile.am | 16 ++++++++++++++++
 benchmarks/wsim/Makefile.am      | 31 +++++++++++++++++++++++++++++++
 configure.ac                     |  2 ++
 demos/Makefile.am                | 12 ------------
 docs/Makefile.am                 |  5 +++++
 lib/Makefile.am                  |  6 ++++++
 lib/media_fill.c                 | 16 ----------------
 lib/tests/Makefile.am            |  4 ++++
 man/Makefile.am                  |  8 +++++++-
 overlay/Makefile.am              |  5 ++++-
 tests/Makefile.am                |  7 ++++++-
 tools/Makefile.am                |  3 +++
 tools/null_state_gen/Makefile.am |  4 ++++
 16 files changed, 100 insertions(+), 32 deletions(-)
 create mode 100644 benchmarks/ezbench.d/Makefile.am
 create mode 100644 benchmarks/wsim/Makefile.am
 delete mode 100644 demos/Makefile.am
 delete mode 100644 lib/media_fill.c

-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 1/7] benchmarks: Add wsim files to dist
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 2/7] benchmarks: Add ezbench.d " Petri Latvala
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 benchmarks/Makefile.am      |  2 ++
 benchmarks/wsim/Makefile.am | 31 +++++++++++++++++++++++++++++++
 configure.ac                |  1 +
 3 files changed, 34 insertions(+)
 create mode 100644 benchmarks/wsim/Makefile.am

diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am
index cab087e7..4331ebef 100644
--- a/benchmarks/Makefile.am
+++ b/benchmarks/Makefile.am
@@ -1,5 +1,7 @@
 include Makefile.sources
 
+SUBDIRS = wsim
+
 benchmarks_PROGRAMS = $(benchmarks_prog_list)
 
 if HAVE_LIBDRM_INTEL
diff --git a/benchmarks/wsim/Makefile.am b/benchmarks/wsim/Makefile.am
new file mode 100644
index 00000000..1f23485a
--- /dev/null
+++ b/benchmarks/wsim/Makefile.am
@@ -0,0 +1,31 @@
+EXTRA_DIST = \
+	README \
+	media_17i7.wsim \
+	media_19.wsim \
+	media_1n2_480p.wsim \
+	media_1n2_asy.wsim \
+	media_1n3_480p.wsim \
+	media_1n3_asy.wsim \
+	media_1n4_480p.wsim \
+	media_1n4_asy.wsim \
+	media_1n5_480p.wsim \
+	media_1n5_asy.wsim \
+	media_load_balance_17i7.wsim \
+	media_load_balance_19.wsim \
+	media_load_balance_4k12u7.wsim \
+	media_load_balance_fhd26u7.wsim \
+	media_load_balance_hd01.wsim \
+	media_load_balance_hd06mp2.wsim \
+	media_load_balance_hd12.wsim \
+	media_load_balance_hd17i4.wsim \
+	media_mfe2_480p.wsim \
+	media_mfe3_480p.wsim \
+	media_mfe4_480p.wsim \
+	media_nn_1080p_s1.wsim \
+	media_nn_1080p_s2.wsim \
+	media_nn_1080p_s3.wsim \
+	media_nn_1080p.wsim \
+	media_nn_480p.wsim \
+	vcs1.wsim \
+	vcs_balanced.wsim \
+	$(NULL)
diff --git a/configure.ac b/configure.ac
index c78f5194..160f480d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -402,6 +402,7 @@ AC_SUBST(REGISTER_FILES)
 AC_CONFIG_FILES([
 		 Makefile
 		 benchmarks/Makefile
+		 benchmarks/wsim/Makefile
 		 docs/Makefile
 		 docs/reference/Makefile
 		 docs/reference/intel-gpu-tools/Makefile
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 2/7] benchmarks: Add ezbench.d files to dist
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 1/7] benchmarks: Add wsim files to dist Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 3/7] demos: Remove final file Petri Latvala
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 benchmarks/Makefile.am           |  2 +-
 benchmarks/ezbench.d/Makefile.am | 16 ++++++++++++++++
 configure.ac                     |  1 +
 3 files changed, 18 insertions(+), 1 deletion(-)
 create mode 100644 benchmarks/ezbench.d/Makefile.am

diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am
index 4331ebef..80c545ac 100644
--- a/benchmarks/Makefile.am
+++ b/benchmarks/Makefile.am
@@ -1,6 +1,6 @@
 include Makefile.sources
 
-SUBDIRS = wsim
+SUBDIRS = wsim ezbench.d
 
 benchmarks_PROGRAMS = $(benchmarks_prog_list)
 
diff --git a/benchmarks/ezbench.d/Makefile.am b/benchmarks/ezbench.d/Makefile.am
new file mode 100644
index 00000000..6dbdad1c
--- /dev/null
+++ b/benchmarks/ezbench.d/Makefile.am
@@ -0,0 +1,16 @@
+EXTRA_DIST = \
+	gem_blt.test \
+	gem_busy.test \
+	gem_create.test \
+	gem_exec_ctx.test \
+	gem_exec_fault.test \
+	gem_exec_nop.test \
+	gem_exec_reloc.test \
+	gem_exec_trace.test \
+	gem_latency.test \
+	gem_mmap.test \
+	gem_prw.test \
+	gem_syslatency.test \
+	prime_lookup.test \
+	vgem_mmap.test \
+	$(NULL)
diff --git a/configure.ac b/configure.ac
index 160f480d..01bb2f49 100644
--- a/configure.ac
+++ b/configure.ac
@@ -402,6 +402,7 @@ AC_SUBST(REGISTER_FILES)
 AC_CONFIG_FILES([
 		 Makefile
 		 benchmarks/Makefile
+		 benchmarks/ezbench.d/Makefile
 		 benchmarks/wsim/Makefile
 		 docs/Makefile
 		 docs/reference/Makefile
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 3/7] demos: Remove final file
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 1/7] benchmarks: Add wsim files to dist Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 2/7] benchmarks: Add ezbench.d " Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 4/7] lib: Remove media_fill.c Petri Latvala
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

demos/Makefile.am was left behind. Nuke it.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 demos/Makefile.am | 12 ------------
 1 file changed, 12 deletions(-)
 delete mode 100644 demos/Makefile.am

diff --git a/demos/Makefile.am b/demos/Makefile.am
deleted file mode 100644
index fe0ff1ff..00000000
--- a/demos/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-include Makefile.sources
-
-bin_PROGRAMS = $(demos_prog_list)
-
-if HAVE_LIBDRM_INTEL
-	bin_PROGRAMS += $(LIBDRM_INTEL_BIN)
-endif
-
-AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/lib
-AM_CFLAGS = $(DRM_CFLAGS) $(PCIACCESS_CFLAGS) $(CWARNFLAGS) \
-	    $(CAIRO_CFLAGS) $(LIBUNWIND_CFLAGS) $(WERROR_CFLAGS)
-LDADD = $(top_builddir)/lib/libintel_tools.la
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 4/7] lib: Remove media_fill.c
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (2 preceding siblings ...)
  2017-09-29 12:59 ` [PATCH i-g-t 3/7] demos: Remove final file Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 5/7] lib: Handle intel_aub.h like the other stub files Petri Latvala
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

media_fill.c has been unused from around 2014 when its contents moved
to intel_batchbuffer.c.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 lib/media_fill.c | 16 ----------------
 1 file changed, 16 deletions(-)
 delete mode 100644 lib/media_fill.c

diff --git a/lib/media_fill.c b/lib/media_fill.c
deleted file mode 100644
index 1d212b80..00000000
--- a/lib/media_fill.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "i830_reg.h"
-#include "media_fill.h"
-
-media_fillfunc_t get_media_fillfunc(int devid)
-{
-	media_fillfunc_t fill = NULL;
-
-	if (IS_GEN8(devid))
-		fill = gen8_media_fillfunc;
-	else if (IS_GEN7(devid))
-		fill = gen7_media_fillfunc;
-	else if (IS_GEN9(devid))
-		fill = gen9_media_fillfunc;
-
-	return fill;
-}
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 5/7] lib: Handle intel_aub.h like the other stub files
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (3 preceding siblings ...)
  2017-09-29 12:59 ` [PATCH i-g-t 4/7] lib: Remove media_fill.c Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 6/7] docs: Distribute audio.txt and chamelium.txt Petri Latvala
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 lib/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/Makefile.am b/lib/Makefile.am
index 6509593d..a17027b9 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -18,6 +18,7 @@ endif
 
 if !HAVE_LIBDRM_INTEL
     libintel_tools_la_SOURCES += 	\
+        stubs/drm/intel_aub.h		\
         stubs/drm/intel_bufmgr.c	\
         stubs/drm/intel_bufmgr.h
 endif
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 6/7] docs: Distribute audio.txt and chamelium.txt
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (4 preceding siblings ...)
  2017-09-29 12:59 ` [PATCH i-g-t 5/7] lib: Handle intel_aub.h like the other stub files Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 12:59 ` [PATCH i-g-t 7/7] meson: Distribute meson build system files Petri Latvala
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 docs/Makefile.am | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/Makefile.am b/docs/Makefile.am
index b68c7745..68cb80a5 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -1 +1,6 @@
 SUBDIRS=reference
+
+EXTRA_DIST = \
+	audio.txt \
+	chamelium.txt \
+	$(NULL)
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [PATCH i-g-t 7/7] meson: Distribute meson build system files
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (5 preceding siblings ...)
  2017-09-29 12:59 ` [PATCH i-g-t 6/7] docs: Distribute audio.txt and chamelium.txt Petri Latvala
@ 2017-09-29 12:59 ` Petri Latvala
  2017-09-29 14:29 ` ✓ Fi.CI.BAT: success for Dist cleanups Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Petri Latvala @ 2017-09-29 12:59 UTC (permalink / raw)
  To: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 Makefile.am                      | 5 +++++
 assembler/Makefile.am            | 1 +
 benchmarks/Makefile.am           | 5 ++++-
 lib/Makefile.am                  | 5 +++++
 lib/tests/Makefile.am            | 4 ++++
 man/Makefile.am                  | 8 +++++++-
 overlay/Makefile.am              | 5 ++++-
 tests/Makefile.am                | 7 ++++++-
 tools/Makefile.am                | 3 +++
 tools/null_state_gen/Makefile.am | 4 ++++
 10 files changed, 43 insertions(+), 4 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 8c254027..eb5edb7e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -52,3 +52,8 @@ ChangeLog:
 	$(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = \
+	meson.build \
+	meson.sh \
+	$(NULL)
diff --git a/assembler/Makefile.am b/assembler/Makefile.am
index bed6c07c..855e33ab 100644
--- a/assembler/Makefile.am
+++ b/assembler/Makefile.am
@@ -153,6 +153,7 @@ CLEANFILES = $(BUILT_SOURCES) \
 EXTRA_DIST = \
 	README \
 	TODO \
+	meson.build \
 	intel-gen4asm.pc.in \
 	$(test_EXTRA_DIST) \
 	$(NULL)
diff --git a/benchmarks/Makefile.am b/benchmarks/Makefile.am
index 80c545ac..d066112a 100644
--- a/benchmarks/Makefile.am
+++ b/benchmarks/Makefile.am
@@ -23,4 +23,7 @@ gem_syslatency_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
 gem_syslatency_LDADD = $(LDADD) -lpthread -lrt
 gem_wsim_LDADD = $(LDADD) -lpthread
 
-EXTRA_DIST=README
+EXTRA_DIST= \
+	README \
+	meson.build \
+	$(NULL)
diff --git a/lib/Makefile.am b/lib/Makefile.am
index a17027b9..30ddb92b 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -85,3 +85,8 @@ libintel_tools_la_LIBADD = \
 	$(GLIB_LIBS) \
 	-lm
 
+EXTRA_DIST = \
+	dummy.c \
+	meson.build \
+	version.h.in \
+	$(NULL)
diff --git a/lib/tests/Makefile.am b/lib/tests/Makefile.am
index 63bbbe59..3482dd44 100644
--- a/lib/tests/Makefile.am
+++ b/lib/tests/Makefile.am
@@ -19,3 +19,7 @@ LDADD = ../libintel_tools.la $(PCIACCESS_LIBS) $(DRM_LIBS) $(LIBUNWIND_LIBS) $(T
 
 LDADD += $(CAIRO_LIBS) $(LIBUDEV_LIBS) $(GLIB_LIBS) -lm
 AM_CFLAGS += $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) $(GLIB_CFLAGS)
+
+EXTRA_DIST = \
+	meson.build \
+	$(NULL)
diff --git a/man/Makefile.am b/man/Makefile.am
index 0098fa45..777f5d1f 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -22,7 +22,13 @@ if HAVE_RST2MAN
 appman_DATA = $(appman_RST:rst=$(APP_MAN_SUFFIX))
 endif
 
-EXTRA_DIST = $(appman_RST)
+EXTRA_DIST = \
+	$(appman_RST) \
+	defs.rst.in \
+	meson.build \
+	rst2man.sh \
+	$(NULL)
+
 CLEANFILES = $(appman_DATA) defs.rst
 
 SUFFIXES = .$(APP_MAN_SUFFIX)
diff --git a/overlay/Makefile.am b/overlay/Makefile.am
index 5472514e..39fbcc4e 100644
--- a/overlay/Makefile.am
+++ b/overlay/Makefile.am
@@ -67,4 +67,7 @@ intel_gpu_overlay_SOURCES += $(both_x11_sources)
 
 intel_gpu_overlay_LDADD = $(LDADD) -lrt
 
-EXTRA_DIST=README
+EXTRA_DIST= \
+	README \
+	meson.build \
+	$(NULL)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1cea4036..89a97015 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -75,7 +75,12 @@ all-local: .gitignore
 	@echo "$(pkglibexec_PROGRAMS) $(HANG) test-list.txt test-list-full.txt /.gitignore" | sed 's/\s\+/\n/g' | sort > $@
 
 EXTRA_PROGRAMS = $(HANG)
-EXTRA_DIST = $(common_files) $(check_SCRIPTS)
+EXTRA_DIST = \
+	$(common_files) \
+	$(check_SCRIPTS) \
+	generate_testlist.sh \
+	meson.build \
+	$(NULL)
 
 CLEANFILES = $(EXTRA_PROGRAMS) test-list.txt test-list-full.txt .gitignore
 
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 35732c17..a8196f07 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -33,3 +33,6 @@ intel_aubdump_la_LIBADD = $(top_builddir)/lib/libintel_tools.la -ldl
 bin_SCRIPTS = intel_aubdump
 CLEANFILES = $(bin_SCRIPTS)
 
+EXTRA_DIST = \
+	meson.build \
+	$(NULL)
diff --git a/tools/null_state_gen/Makefile.am b/tools/null_state_gen/Makefile.am
index 24884a7f..2577dd88 100644
--- a/tools/null_state_gen/Makefile.am
+++ b/tools/null_state_gen/Makefile.am
@@ -28,3 +28,7 @@ states: intel_null_state_gen
 		echo "" >>$(h); \
 		./intel_null_state_gen $$gen >>$(h); \
 	done
+
+EXTRA_DIST = \
+	meson.build \
+	$(NULL)
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.BAT: success for Dist cleanups
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (6 preceding siblings ...)
  2017-09-29 12:59 ` [PATCH i-g-t 7/7] meson: Distribute meson build system files Petri Latvala
@ 2017-09-29 14:29 ` Patchwork
  2017-09-29 17:46 ` ✓ Fi.CI.IGT: " Patchwork
  2017-10-02  8:55 ` [PATCH i-g-t 0/7] " Daniel Vetter
  9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2017-09-29 14:29 UTC (permalink / raw)
  To: Petri Latvala; +Cc: intel-gfx

== Series Details ==

Series: Dist cleanups
URL   : https://patchwork.freedesktop.org/series/31177/
State : success

== Summary ==

IGT patchset tested on top of latest successful build
182b1941d8e221f1f5625c53f74b09bef7d8837a benchmarks: Actually build LIBDRM_INTEL_BENCHMARKS

with latest DRM-Tip kernel build CI_DRM_3157
e650b9cdaff6 drm-tip: 2017y-09m-29d-11h-52m-41s UTC integration manifest

No testlist changes.

Test chamelium:
        Subgroup hdmi-crc-fast:
                dmesg-warn -> PASS       (fi-skl-6700k) fdo#103019
Test kms_busy:
        Subgroup basic-flip-c:
                incomplete -> PASS       (fi-bxt-j4205) fdo#102035
Test drv_module_reload:
        Subgroup basic-reload-inject:
                dmesg-warn -> PASS       (fi-glk-1) fdo#102777

fdo#103019 https://bugs.freedesktop.org/show_bug.cgi?id=103019
fdo#102035 https://bugs.freedesktop.org/show_bug.cgi?id=102035
fdo#102777 https://bugs.freedesktop.org/show_bug.cgi?id=102777

fi-bdw-5557u     total:289  pass:268  dwarn:0   dfail:0   fail:0   skip:21  time:444s
fi-bdw-gvtdvm    total:289  pass:265  dwarn:0   dfail:0   fail:0   skip:24  time:475s
fi-blb-e6850     total:289  pass:224  dwarn:1   dfail:0   fail:0   skip:64  time:426s
fi-bsw-n3050     total:289  pass:243  dwarn:0   dfail:0   fail:0   skip:46  time:514s
fi-bwr-2160      total:289  pass:184  dwarn:0   dfail:0   fail:0   skip:105 time:279s
fi-bxt-dsi       total:289  pass:259  dwarn:0   dfail:0   fail:0   skip:30  time:505s
fi-bxt-j4205     total:289  pass:260  dwarn:0   dfail:0   fail:0   skip:29  time:507s
fi-byt-j1900     total:289  pass:254  dwarn:1   dfail:0   fail:0   skip:34  time:503s
fi-byt-n2820     total:289  pass:250  dwarn:1   dfail:0   fail:0   skip:38  time:497s
fi-cfl-s         total:289  pass:256  dwarn:1   dfail:0   fail:0   skip:32  time:551s
fi-cnl-y         total:289  pass:261  dwarn:1   dfail:0   fail:0   skip:27  time:651s
fi-elk-e7500     total:289  pass:230  dwarn:0   dfail:0   fail:0   skip:59  time:420s
fi-glk-1         total:289  pass:260  dwarn:0   dfail:0   fail:0   skip:29  time:571s
fi-hsw-4770      total:289  pass:263  dwarn:0   dfail:0   fail:0   skip:26  time:426s
fi-hsw-4770r     total:289  pass:263  dwarn:0   dfail:0   fail:0   skip:26  time:406s
fi-ilk-650       total:289  pass:229  dwarn:0   dfail:0   fail:0   skip:60  time:438s
fi-ivb-3520m     total:289  pass:261  dwarn:0   dfail:0   fail:0   skip:28  time:491s
fi-ivb-3770      total:289  pass:261  dwarn:0   dfail:0   fail:0   skip:28  time:467s
fi-kbl-7500u     total:289  pass:264  dwarn:1   dfail:0   fail:0   skip:24  time:471s
fi-kbl-7560u     total:289  pass:270  dwarn:0   dfail:0   fail:0   skip:19  time:583s
fi-kbl-r         total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:591s
fi-pnv-d510      total:289  pass:223  dwarn:1   dfail:0   fail:0   skip:65  time:543s
fi-skl-6260u     total:289  pass:269  dwarn:0   dfail:0   fail:0   skip:20  time:463s
fi-skl-6700k     total:289  pass:265  dwarn:0   dfail:0   fail:0   skip:24  time:748s
fi-skl-6770hq    total:289  pass:269  dwarn:0   dfail:0   fail:0   skip:20  time:489s
fi-skl-gvtdvm    total:289  pass:266  dwarn:0   dfail:0   fail:0   skip:23  time:475s
fi-snb-2520m     total:289  pass:251  dwarn:0   dfail:0   fail:0   skip:38  time:576s
fi-snb-2600      total:289  pass:250  dwarn:0   dfail:0   fail:0   skip:39  time:427s

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_278/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✓ Fi.CI.IGT: success for Dist cleanups
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (7 preceding siblings ...)
  2017-09-29 14:29 ` ✓ Fi.CI.BAT: success for Dist cleanups Patchwork
@ 2017-09-29 17:46 ` Patchwork
  2017-10-02  8:55 ` [PATCH i-g-t 0/7] " Daniel Vetter
  9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2017-09-29 17:46 UTC (permalink / raw)
  To: Petri Latvala; +Cc: intel-gfx

== Series Details ==

Series: Dist cleanups
URL   : https://patchwork.freedesktop.org/series/31177/
State : success

== Summary ==

Test gem_eio:
        Subgroup throttle:
                dmesg-warn -> PASS       (shard-hsw) fdo#102886 +3
Test perf:
        Subgroup blocking:
                fail       -> PASS       (shard-hsw) fdo#102252
Test kms_setmode:
        Subgroup basic:
                fail       -> PASS       (shard-hsw) fdo#99912
Test prime_mmap:
        Subgroup test_userptr:
                pass       -> DMESG-WARN (shard-hsw) fdo#102939

fdo#102886 https://bugs.freedesktop.org/show_bug.cgi?id=102886
fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
fdo#102939 https://bugs.freedesktop.org/show_bug.cgi?id=102939

shard-hsw        total:2429 pass:1333 dwarn:4   dfail:0   fail:9   skip:1083 time:10012s

== Logs ==

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

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

* Re: [PATCH i-g-t 0/7] Dist cleanups
  2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
                   ` (8 preceding siblings ...)
  2017-09-29 17:46 ` ✓ Fi.CI.IGT: " Patchwork
@ 2017-10-02  8:55 ` Daniel Vetter
  9 siblings, 0 replies; 11+ messages in thread
From: Daniel Vetter @ 2017-10-02  8:55 UTC (permalink / raw)
  To: Petri Latvala; +Cc: intel-gfx

On Fri, Sep 29, 2017 at 03:59:45PM +0300, Petri Latvala wrote:
> Distribute files that should be, remove files that shouldn't be even
> in git.
> 
> Notable inclusion: Meson build system files added to dist. With this
> series, both a git checkout and tarball distribution build the same
> results with either autotools or meson. Meson support looks to be
> mature enough to get tarballed up.

On the entire series:

Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
> Petri Latvala (7):
>   benchmarks: Add wsim files to dist
>   benchmarks: Add ezbench.d files to dist
>   demos: Remove final file
>   lib: Remove media_fill.c
>   lib: Handle intel_aub.h like the other stub files
>   docs: Distribute audio.txt and chamelium.txt
>   meson: Distribute meson build system files
> 
>  Makefile.am                      |  5 +++++
>  assembler/Makefile.am            |  1 +
>  benchmarks/Makefile.am           |  7 ++++++-
>  benchmarks/ezbench.d/Makefile.am | 16 ++++++++++++++++
>  benchmarks/wsim/Makefile.am      | 31 +++++++++++++++++++++++++++++++
>  configure.ac                     |  2 ++
>  demos/Makefile.am                | 12 ------------
>  docs/Makefile.am                 |  5 +++++
>  lib/Makefile.am                  |  6 ++++++
>  lib/media_fill.c                 | 16 ----------------
>  lib/tests/Makefile.am            |  4 ++++
>  man/Makefile.am                  |  8 +++++++-
>  overlay/Makefile.am              |  5 ++++-
>  tests/Makefile.am                |  7 ++++++-
>  tools/Makefile.am                |  3 +++
>  tools/null_state_gen/Makefile.am |  4 ++++
>  16 files changed, 100 insertions(+), 32 deletions(-)
>  create mode 100644 benchmarks/ezbench.d/Makefile.am
>  create mode 100644 benchmarks/wsim/Makefile.am
>  delete mode 100644 demos/Makefile.am
>  delete mode 100644 lib/media_fill.c
> 
> -- 
> 2.14.1
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2017-10-02  8:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-29 12:59 [PATCH i-g-t 0/7] Dist cleanups Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 1/7] benchmarks: Add wsim files to dist Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 2/7] benchmarks: Add ezbench.d " Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 3/7] demos: Remove final file Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 4/7] lib: Remove media_fill.c Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 5/7] lib: Handle intel_aub.h like the other stub files Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 6/7] docs: Distribute audio.txt and chamelium.txt Petri Latvala
2017-09-29 12:59 ` [PATCH i-g-t 7/7] meson: Distribute meson build system files Petri Latvala
2017-09-29 14:29 ` ✓ Fi.CI.BAT: success for Dist cleanups Patchwork
2017-09-29 17:46 ` ✓ Fi.CI.IGT: " Patchwork
2017-10-02  8:55 ` [PATCH i-g-t 0/7] " Daniel Vetter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.