All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory
@ 2018-10-25 13:08 Arkadiusz Hiler
  2018-10-25 13:21 ` Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-10-25 13:08 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Martin Peres

The drv_ tests are i915 specific, so let's move them to i915 directory
and change the binary prefix to i915_.

Additionally, while we at moving stuff around, let's rename
drv_module_reload to i915_module_load and rename its subtest basic-no-display
to basic-reload-no-display.

Cc: Martin Peres <martin.peres@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 docs/reference/igt-gpu-tools/Makefile.am      |  4 ++--
 .../igt-gpu-tools/igt_test_programs.xml       | 18 +++++++--------
 docs/reference/igt-gpu-tools/meson.build      |  2 +-
 tests/Makefile.sources                        | 23 ++++++++++++++-----
 tests/feat_profile.json                       | 10 ++++----
 .../getparams_basic.c}                        |  0
 tests/{drv_hangman.c => i915/hangman.c}       |  0
 tests/{drv_missed_irq.c => i915/missed_irq.c} |  0
 .../module_load.c}                            |  2 +-
 tests/{drv_selftest.c => i915/selftest.c}     |  0
 tests/{drv_suspend.c => i915/suspend.c}       |  0
 tests/igt_command_line.sh                     |  2 +-
 tests/intel-ci/blacklist.txt                  |  4 ++--
 tests/intel-ci/fast-feedback.testlist         | 12 +++++-----
 tests/meson.build                             | 12 +++++-----
 15 files changed, 50 insertions(+), 39 deletions(-)
 rename tests/{drv_getparams_basic.c => i915/getparams_basic.c} (100%)
 rename tests/{drv_hangman.c => i915/hangman.c} (100%)
 rename tests/{drv_missed_irq.c => i915/missed_irq.c} (100%)
 rename tests/{drv_module_reload.c => i915/module_load.c} (99%)
 rename tests/{drv_selftest.c => i915/selftest.c} (100%)
 rename tests/{drv_suspend.c => i915/suspend.c} (100%)

diff --git a/docs/reference/igt-gpu-tools/Makefile.am b/docs/reference/igt-gpu-tools/Makefile.am
index 11ada326..c77c6a65 100644
--- a/docs/reference/igt-gpu-tools/Makefile.am
+++ b/docs/reference/igt-gpu-tools/Makefile.am
@@ -144,8 +144,6 @@ test_program_files = xml/igt_test_programs_amdgpu_description.xml \
 		     xml/igt_test_programs_debugfs_programs.xml \
 		     xml/igt_test_programs_drm_description.xml \
 		     xml/igt_test_programs_drm_programs.xml \
-		     xml/igt_test_programs_drv_description.xml \
-		     xml/igt_test_programs_drv_programs.xml \
 		     xml/igt_test_programs_gem_description.xml \
 		     xml/igt_test_programs_gem_programs.xml \
 		     xml/igt_test_programs_gen3_description.xml \
@@ -154,6 +152,8 @@ test_program_files = xml/igt_test_programs_amdgpu_description.xml \
 		     xml/igt_test_programs_gen7_programs.xml \
 		     xml/igt_test_programs_gvt_description.xml \
 		     xml/igt_test_programs_gvt_programs.xml \
+		     xml/igt_test_programs_i915_description.xml \
+		     xml/igt_test_programs_i915_programs.xml \
 		     xml/igt_test_programs_kms_description.xml \
 		     xml/igt_test_programs_kms_programs.xml \
 		     xml/igt_test_programs_meta_description.xml \
diff --git a/docs/reference/igt-gpu-tools/igt_test_programs.xml b/docs/reference/igt-gpu-tools/igt_test_programs.xml
index 95c4653e..2487da79 100644
--- a/docs/reference/igt-gpu-tools/igt_test_programs.xml
+++ b/docs/reference/igt-gpu-tools/igt_test_programs.xml
@@ -145,15 +145,6 @@
     <xi:include href="igt_test_programs_drm_description.xml"/>
   </refentry>
 
-  <refentry id="igt-drv-tests">
-    <refnamediv>
-      <refname>DRV Tests</refname>
-      <refpurpose>Tests for overall driver behaviour</refpurpose>
-    </refnamediv>
-    <xi:include href="igt_test_programs_drv_programs.xml"/>
-    <xi:include href="igt_test_programs_drv_description.xml"/>
-  </refentry>
-
   <refentry id="igt-gem-tests">
     <refnamediv>
       <refname>GEM Tests</refname>
@@ -190,6 +181,15 @@
     <xi:include href="igt_test_programs_gvt_description.xml"/>
   </refentry>
 
+  <refentry id="igt-i915-tests">
+    <refnamediv>
+      <refname>i915 Tests</refname>
+      <refpurpose>Tests for overall i915 driver behaviour</refpurpose>
+    </refnamediv>
+    <xi:include href="igt_test_programs_i915_programs.xml"/>
+    <xi:include href="igt_test_programs_i915_description.xml"/>
+  </refentry>
+
   <refentry id="igt-kms-tests">
     <refnamediv>
       <refname>KMS Tests</refname>
diff --git a/docs/reference/igt-gpu-tools/meson.build b/docs/reference/igt-gpu-tools/meson.build
index e544e71b..b2b2c1c2 100644
--- a/docs/reference/igt-gpu-tools/meson.build
+++ b/docs/reference/igt-gpu-tools/meson.build
@@ -29,11 +29,11 @@ test_groups = [
 	'core',
 	'debugfs',
 	'drm',
-	'drv',
 	'gem',
 	'gen3',
 	'gen7',
 	'gvt',
+	'i915',
 	'kms',
 	'meta',
 	'perf',
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index c910210b..a652641e 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -33,12 +33,6 @@ TESTS_progs = \
 	drm_import_export \
 	drm_mm \
 	drm_read \
-	drv_getparams_basic \
-	drv_hangman \
-	drv_missed_irq \
-	drv_module_reload \
-	drv_selftest \
-	drv_suspend \
 	kms_3d \
 	kms_addfb_basic \
 	kms_atomic \
@@ -477,9 +471,26 @@ gen3_render_tiledx_blits_SOURCES = i915/gen3_render_tiledx_blits.c
 TESTS_progs += gen3_render_tiledy_blits
 gen3_render_tiledy_blits_SOURCES = i915/gen3_render_tiledy_blits.c
 
+TESTS_progs += i915_getparams_basic
+i915_getparams_basic_SOURCES = i915/getparams_basic.c
+
+TESTS_progs += i915_hangman
+i915_hangman_SOURCES = i915/hangman.c
+
+TESTS_progs += i915_missed_irq
+i915_missed_irq_SOURCES = i915/missed_irq.c
+
+TESTS_progs += i915_module_load
+i915_module_load_SOURCES = i915/module_load.c
+
 TESTS_progs += i915_query
 i915_query_SOURCES = i915/query.c
 
+TESTS_progs += i915_selftest
+i915_selftest_SOURCES = i915/selftest.c
+
+TESTS_progs += i915_suspend
+i915_suspend_SOURCES = i915/suspend.c
 
 TESTS_progs_X = gem_concurrent_all
 gem_concurrent_all_SOURCES = i915/gem_concurrent_all.c
diff --git a/tests/feat_profile.json b/tests/feat_profile.json
index ccc2ad86..f13d636e 100644
--- a/tests/feat_profile.json
+++ b/tests/feat_profile.json
@@ -24,11 +24,6 @@
         "exclude_tests" : "",
         "target_rate" : 90
     },
-    "drv" : {
-        "include_tests" : "drv",
-        "exclude_tests" : "",
-        "target_rate" : 90
-    },
     "gem" : {
         "include_tests" : "gem",
         "exclude_tests" : "",
@@ -40,6 +35,11 @@
         "exclude_tests" : "",
         "target_rate" : 90
     },
+    "i915" : {
+        "include_tests" : "i915",
+        "exclude_tests" : "",
+        "target_rate" : 90
+    },
     "kms" : {
         "include_tests" : "kms",
         "exclude_tests" : "",
diff --git a/tests/drv_getparams_basic.c b/tests/i915/getparams_basic.c
similarity index 100%
rename from tests/drv_getparams_basic.c
rename to tests/i915/getparams_basic.c
diff --git a/tests/drv_hangman.c b/tests/i915/hangman.c
similarity index 100%
rename from tests/drv_hangman.c
rename to tests/i915/hangman.c
diff --git a/tests/drv_missed_irq.c b/tests/i915/missed_irq.c
similarity index 100%
rename from tests/drv_missed_irq.c
rename to tests/i915/missed_irq.c
diff --git a/tests/drv_module_reload.c b/tests/i915/module_load.c
similarity index 99%
rename from tests/drv_module_reload.c
rename to tests/i915/module_load.c
index cf4aea80..0b31b0b6 100644
--- a/tests/drv_module_reload.c
+++ b/tests/i915/module_load.c
@@ -343,7 +343,7 @@ igt_main
 		/* only default modparams, can leave module loaded */
 	}
 
-	igt_subtest("basic-no-display") {
+	igt_subtest("basic-reload-no-display") {
 		igt_i915_driver_unload();
 
 		igt_assert_eq(igt_i915_driver_load("disable_display=1"), 0);
diff --git a/tests/drv_selftest.c b/tests/i915/selftest.c
similarity index 100%
rename from tests/drv_selftest.c
rename to tests/i915/selftest.c
diff --git a/tests/drv_suspend.c b/tests/i915/suspend.c
similarity index 100%
rename from tests/drv_suspend.c
rename to tests/i915/suspend.c
diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
index a4ec3f95..e05ec34c 100755
--- a/tests/igt_command_line.sh
+++ b/tests/igt_command_line.sh
@@ -90,7 +90,7 @@ check_test ()
 		# Subtest enumeration of kernel selftest launchers depends
 		# on the running kernel. If selftests are not enabled,
 		# they will output nothing and exit with 0.
-		if [ "$testname" != "drv_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
+		if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
 			fail $test
 		fi
 	fi
diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
index 88b2fe31..77f0c905 100644
--- a/tests/intel-ci/blacklist.txt
+++ b/tests/intel-ci/blacklist.txt
@@ -2,7 +2,7 @@ igt@meta_test(@.*)?
 ###############################################
 # Kernel selftests (run separately)
 ###############################################
-igt@drv_selftest(@.*)?
+igt@i915_selftest(@.*)?
 igt@drm_mm(@.*)?
 ###############################################
 # Handle module reloads with great care!
@@ -12,7 +12,7 @@ igt@drm_mm(@.*)?
 # self-contained tests, leading to random
 # failures in tests run afterwards.
 ###############################################
-igt@drv_module_reload(@.*)?
+igt@i915_module_load(@.*)?
 igt@pm_rpm@module-reload
 ###############################################
 # GEM
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index c625904d..add67c9a 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -3,9 +3,6 @@
 igt@core_auth@basic-auth
 igt@core_prop_blob@basic
 igt@debugfs_test@read_all_entries
-igt@drv_getparams_basic@basic-eu-total
-igt@drv_getparams_basic@basic-subslice-total
-igt@drv_hangman@error-state-basic
 igt@gem_basic@bad-close
 igt@gem_basic@create-close
 igt@gem_basic@create-fd-close
@@ -139,6 +136,9 @@ igt@gem_wait@basic-busy-all
 igt@gem_wait@basic-wait-all
 igt@gem_wait@basic-await-all
 igt@gem_workarounds@basic-read
+igt@i915_getparams_basic@basic-eu-total
+igt@i915_getparams_basic@basic-subslice-total
+igt@i915_hangman@error-state-basic
 igt@kms_addfb_basic@addfb25-bad-modifier
 igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
 igt@kms_addfb_basic@addfb25-modifier-no-flag
@@ -269,7 +269,7 @@ igt@vgem_basic@sysfs
 # driver in a broken state that is not otherwise noticed in that test.
 
 igt@vgem_basic@unload
-igt@drv_module_reload@basic-reload
-igt@drv_module_reload@basic-no-display
-igt@drv_module_reload@basic-reload-inject
+igt@i915_module_load@basic-reload
+igt@i915_module_load@basic-reload-no-display
+igt@i915_module_load@basic-reload-inject
 igt@pm_rpm@module-reload
diff --git a/tests/meson.build b/tests/meson.build
index eacdc1a7..d5586930 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -10,12 +10,6 @@ test_progs = [
 	'drm_import_export',
 	'drm_mm',
 	'drm_read',
-	'drv_getparams_basic',
-	'drv_hangman',
-	'drv_missed_irq',
-	'drv_module_reload',
-	'drv_selftest',
-	'drv_suspend',
 	'kms_3d',
 	'kms_addfb_basic',
 	'kms_atomic',
@@ -96,7 +90,13 @@ test_progs = [
 ]
 
 i915_progs = [
+	'getparams_basic',
+	'hangman',
+	'missed_irq',
+	'module_load',
 	'query',
+	'selftest',
+	'suspend',
 ]
 
 gem_progs = [
-- 
2.17.2

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

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

* Re: [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory
  2018-10-25 13:08 [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory Arkadiusz Hiler
@ 2018-10-25 13:21 ` Chris Wilson
  2018-10-25 13:44 ` [igt-dev] [PATCH i-g-t v2] " Arkadiusz Hiler
  2018-10-25 16:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2) Patchwork
  2 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2018-10-25 13:21 UTC (permalink / raw)
  To: Arkadiusz Hiler, igt-dev; +Cc: Petri Latvala, Martin Peres

Quoting Arkadiusz Hiler (2018-10-25 14:08:40)
> The drv_ tests are i915 specific, so let's move them to i915 directory
> and change the binary prefix to i915_.
> 
> Additionally, while we at moving stuff around, let's rename
> drv_module_reload to i915_module_load and rename its subtest basic-no-display
> to basic-reload-no-display.

Don't stop there!

We can kill the basic-

And basic-reload-injection (fault-injection) is very confusingly named.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] [PATCH i-g-t v2] tests: Move drv_ tests to i915 directory
  2018-10-25 13:08 [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory Arkadiusz Hiler
  2018-10-25 13:21 ` Chris Wilson
@ 2018-10-25 13:44 ` Arkadiusz Hiler
  2018-10-25 14:56   ` Chris Wilson
  2018-10-25 16:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2) Patchwork
  2 siblings, 1 reply; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-10-25 13:44 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Martin Peres

The drv_ tests are i915 specific, so let's move them to i915 directory
and change the binary prefix to i915_.

Additionally, while we at moving stuff around, let's rename
module_reload to module_load and do the following cleanup with the
subtests:

  basic-reload        -> reload
  basic-no-display    -> reload-no-display
  basic-reload-inject -> reload-with-fault-injection

Cc: Martin Peres <martin.peres@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
 docs/reference/igt-gpu-tools/Makefile.am      |  4 ++--
 .../igt-gpu-tools/igt_test_programs.xml       | 18 +++++++--------
 docs/reference/igt-gpu-tools/meson.build      |  2 +-
 tests/Makefile.sources                        | 23 ++++++++++++++-----
 tests/feat_profile.json                       | 10 ++++----
 .../getparams_basic.c}                        |  0
 tests/{drv_hangman.c => i915/hangman.c}       |  0
 tests/{drv_missed_irq.c => i915/missed_irq.c} |  0
 .../module_load.c}                            |  6 ++---
 tests/{drv_selftest.c => i915/selftest.c}     |  0
 tests/{drv_suspend.c => i915/suspend.c}       |  0
 tests/igt_command_line.sh                     |  2 +-
 tests/intel-ci/blacklist.txt                  |  4 ++--
 tests/intel-ci/fast-feedback.testlist         | 12 +++++-----
 tests/meson.build                             | 12 +++++-----
 15 files changed, 52 insertions(+), 41 deletions(-)
 rename tests/{drv_getparams_basic.c => i915/getparams_basic.c} (100%)
 rename tests/{drv_hangman.c => i915/hangman.c} (100%)
 rename tests/{drv_missed_irq.c => i915/missed_irq.c} (100%)
 rename tests/{drv_module_reload.c => i915/module_load.c} (98%)
 rename tests/{drv_selftest.c => i915/selftest.c} (100%)
 rename tests/{drv_suspend.c => i915/suspend.c} (100%)

diff --git a/docs/reference/igt-gpu-tools/Makefile.am b/docs/reference/igt-gpu-tools/Makefile.am
index 11ada326..c77c6a65 100644
--- a/docs/reference/igt-gpu-tools/Makefile.am
+++ b/docs/reference/igt-gpu-tools/Makefile.am
@@ -144,8 +144,6 @@ test_program_files = xml/igt_test_programs_amdgpu_description.xml \
 		     xml/igt_test_programs_debugfs_programs.xml \
 		     xml/igt_test_programs_drm_description.xml \
 		     xml/igt_test_programs_drm_programs.xml \
-		     xml/igt_test_programs_drv_description.xml \
-		     xml/igt_test_programs_drv_programs.xml \
 		     xml/igt_test_programs_gem_description.xml \
 		     xml/igt_test_programs_gem_programs.xml \
 		     xml/igt_test_programs_gen3_description.xml \
@@ -154,6 +152,8 @@ test_program_files = xml/igt_test_programs_amdgpu_description.xml \
 		     xml/igt_test_programs_gen7_programs.xml \
 		     xml/igt_test_programs_gvt_description.xml \
 		     xml/igt_test_programs_gvt_programs.xml \
+		     xml/igt_test_programs_i915_description.xml \
+		     xml/igt_test_programs_i915_programs.xml \
 		     xml/igt_test_programs_kms_description.xml \
 		     xml/igt_test_programs_kms_programs.xml \
 		     xml/igt_test_programs_meta_description.xml \
diff --git a/docs/reference/igt-gpu-tools/igt_test_programs.xml b/docs/reference/igt-gpu-tools/igt_test_programs.xml
index 95c4653e..2487da79 100644
--- a/docs/reference/igt-gpu-tools/igt_test_programs.xml
+++ b/docs/reference/igt-gpu-tools/igt_test_programs.xml
@@ -145,15 +145,6 @@
     <xi:include href="igt_test_programs_drm_description.xml"/>
   </refentry>
 
-  <refentry id="igt-drv-tests">
-    <refnamediv>
-      <refname>DRV Tests</refname>
-      <refpurpose>Tests for overall driver behaviour</refpurpose>
-    </refnamediv>
-    <xi:include href="igt_test_programs_drv_programs.xml"/>
-    <xi:include href="igt_test_programs_drv_description.xml"/>
-  </refentry>
-
   <refentry id="igt-gem-tests">
     <refnamediv>
       <refname>GEM Tests</refname>
@@ -190,6 +181,15 @@
     <xi:include href="igt_test_programs_gvt_description.xml"/>
   </refentry>
 
+  <refentry id="igt-i915-tests">
+    <refnamediv>
+      <refname>i915 Tests</refname>
+      <refpurpose>Tests for overall i915 driver behaviour</refpurpose>
+    </refnamediv>
+    <xi:include href="igt_test_programs_i915_programs.xml"/>
+    <xi:include href="igt_test_programs_i915_description.xml"/>
+  </refentry>
+
   <refentry id="igt-kms-tests">
     <refnamediv>
       <refname>KMS Tests</refname>
diff --git a/docs/reference/igt-gpu-tools/meson.build b/docs/reference/igt-gpu-tools/meson.build
index e544e71b..b2b2c1c2 100644
--- a/docs/reference/igt-gpu-tools/meson.build
+++ b/docs/reference/igt-gpu-tools/meson.build
@@ -29,11 +29,11 @@ test_groups = [
 	'core',
 	'debugfs',
 	'drm',
-	'drv',
 	'gem',
 	'gen3',
 	'gen7',
 	'gvt',
+	'i915',
 	'kms',
 	'meta',
 	'perf',
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index c910210b..a652641e 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -33,12 +33,6 @@ TESTS_progs = \
 	drm_import_export \
 	drm_mm \
 	drm_read \
-	drv_getparams_basic \
-	drv_hangman \
-	drv_missed_irq \
-	drv_module_reload \
-	drv_selftest \
-	drv_suspend \
 	kms_3d \
 	kms_addfb_basic \
 	kms_atomic \
@@ -477,9 +471,26 @@ gen3_render_tiledx_blits_SOURCES = i915/gen3_render_tiledx_blits.c
 TESTS_progs += gen3_render_tiledy_blits
 gen3_render_tiledy_blits_SOURCES = i915/gen3_render_tiledy_blits.c
 
+TESTS_progs += i915_getparams_basic
+i915_getparams_basic_SOURCES = i915/getparams_basic.c
+
+TESTS_progs += i915_hangman
+i915_hangman_SOURCES = i915/hangman.c
+
+TESTS_progs += i915_missed_irq
+i915_missed_irq_SOURCES = i915/missed_irq.c
+
+TESTS_progs += i915_module_load
+i915_module_load_SOURCES = i915/module_load.c
+
 TESTS_progs += i915_query
 i915_query_SOURCES = i915/query.c
 
+TESTS_progs += i915_selftest
+i915_selftest_SOURCES = i915/selftest.c
+
+TESTS_progs += i915_suspend
+i915_suspend_SOURCES = i915/suspend.c
 
 TESTS_progs_X = gem_concurrent_all
 gem_concurrent_all_SOURCES = i915/gem_concurrent_all.c
diff --git a/tests/feat_profile.json b/tests/feat_profile.json
index ccc2ad86..f13d636e 100644
--- a/tests/feat_profile.json
+++ b/tests/feat_profile.json
@@ -24,11 +24,6 @@
         "exclude_tests" : "",
         "target_rate" : 90
     },
-    "drv" : {
-        "include_tests" : "drv",
-        "exclude_tests" : "",
-        "target_rate" : 90
-    },
     "gem" : {
         "include_tests" : "gem",
         "exclude_tests" : "",
@@ -40,6 +35,11 @@
         "exclude_tests" : "",
         "target_rate" : 90
     },
+    "i915" : {
+        "include_tests" : "i915",
+        "exclude_tests" : "",
+        "target_rate" : 90
+    },
     "kms" : {
         "include_tests" : "kms",
         "exclude_tests" : "",
diff --git a/tests/drv_getparams_basic.c b/tests/i915/getparams_basic.c
similarity index 100%
rename from tests/drv_getparams_basic.c
rename to tests/i915/getparams_basic.c
diff --git a/tests/drv_hangman.c b/tests/i915/hangman.c
similarity index 100%
rename from tests/drv_hangman.c
rename to tests/i915/hangman.c
diff --git a/tests/drv_missed_irq.c b/tests/i915/missed_irq.c
similarity index 100%
rename from tests/drv_missed_irq.c
rename to tests/i915/missed_irq.c
diff --git a/tests/drv_module_reload.c b/tests/i915/module_load.c
similarity index 98%
rename from tests/drv_module_reload.c
rename to tests/i915/module_load.c
index cf4aea80..7fe83520 100644
--- a/tests/drv_module_reload.c
+++ b/tests/i915/module_load.c
@@ -326,7 +326,7 @@ hda_dynamic_debug(bool enable)
 
 igt_main
 {
-	igt_subtest("basic-reload") {
+	igt_subtest("reload") {
 		int load_error;
 
 		igt_i915_driver_unload();
@@ -343,7 +343,7 @@ igt_main
 		/* only default modparams, can leave module loaded */
 	}
 
-	igt_subtest("basic-no-display") {
+	igt_subtest("reload-no-display") {
 		igt_i915_driver_unload();
 
 		igt_assert_eq(igt_i915_driver_load("disable_display=1"), 0);
@@ -351,7 +351,7 @@ igt_main
 		igt_i915_driver_unload();
 	}
 
-	igt_subtest("basic-reload-inject") {
+	igt_subtest("reload-with-fault-injection") {
 		int i = 0;
 
 		igt_i915_driver_unload();
diff --git a/tests/drv_selftest.c b/tests/i915/selftest.c
similarity index 100%
rename from tests/drv_selftest.c
rename to tests/i915/selftest.c
diff --git a/tests/drv_suspend.c b/tests/i915/suspend.c
similarity index 100%
rename from tests/drv_suspend.c
rename to tests/i915/suspend.c
diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
index a4ec3f95..e05ec34c 100755
--- a/tests/igt_command_line.sh
+++ b/tests/igt_command_line.sh
@@ -90,7 +90,7 @@ check_test ()
 		# Subtest enumeration of kernel selftest launchers depends
 		# on the running kernel. If selftests are not enabled,
 		# they will output nothing and exit with 0.
-		if [ "$testname" != "drv_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
+		if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
 			fail $test
 		fi
 	fi
diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt
index 88b2fe31..77f0c905 100644
--- a/tests/intel-ci/blacklist.txt
+++ b/tests/intel-ci/blacklist.txt
@@ -2,7 +2,7 @@ igt@meta_test(@.*)?
 ###############################################
 # Kernel selftests (run separately)
 ###############################################
-igt@drv_selftest(@.*)?
+igt@i915_selftest(@.*)?
 igt@drm_mm(@.*)?
 ###############################################
 # Handle module reloads with great care!
@@ -12,7 +12,7 @@ igt@drm_mm(@.*)?
 # self-contained tests, leading to random
 # failures in tests run afterwards.
 ###############################################
-igt@drv_module_reload(@.*)?
+igt@i915_module_load(@.*)?
 igt@pm_rpm@module-reload
 ###############################################
 # GEM
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index c625904d..6d42792c 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -3,9 +3,6 @@
 igt@core_auth@basic-auth
 igt@core_prop_blob@basic
 igt@debugfs_test@read_all_entries
-igt@drv_getparams_basic@basic-eu-total
-igt@drv_getparams_basic@basic-subslice-total
-igt@drv_hangman@error-state-basic
 igt@gem_basic@bad-close
 igt@gem_basic@create-close
 igt@gem_basic@create-fd-close
@@ -139,6 +136,9 @@ igt@gem_wait@basic-busy-all
 igt@gem_wait@basic-wait-all
 igt@gem_wait@basic-await-all
 igt@gem_workarounds@basic-read
+igt@i915_getparams_basic@basic-eu-total
+igt@i915_getparams_basic@basic-subslice-total
+igt@i915_hangman@error-state-basic
 igt@kms_addfb_basic@addfb25-bad-modifier
 igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
 igt@kms_addfb_basic@addfb25-modifier-no-flag
@@ -269,7 +269,7 @@ igt@vgem_basic@sysfs
 # driver in a broken state that is not otherwise noticed in that test.
 
 igt@vgem_basic@unload
-igt@drv_module_reload@basic-reload
-igt@drv_module_reload@basic-no-display
-igt@drv_module_reload@basic-reload-inject
+igt@i915_module_load@reload
+igt@i915_module_load@reload-no-display
+igt@i915_module_load@reload-with-fault-injection
 igt@pm_rpm@module-reload
diff --git a/tests/meson.build b/tests/meson.build
index eacdc1a7..d5586930 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -10,12 +10,6 @@ test_progs = [
 	'drm_import_export',
 	'drm_mm',
 	'drm_read',
-	'drv_getparams_basic',
-	'drv_hangman',
-	'drv_missed_irq',
-	'drv_module_reload',
-	'drv_selftest',
-	'drv_suspend',
 	'kms_3d',
 	'kms_addfb_basic',
 	'kms_atomic',
@@ -96,7 +90,13 @@ test_progs = [
 ]
 
 i915_progs = [
+	'getparams_basic',
+	'hangman',
+	'missed_irq',
+	'module_load',
 	'query',
+	'selftest',
+	'suspend',
 ]
 
 gem_progs = [
-- 
2.17.2

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

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

* Re: [igt-dev] [PATCH i-g-t v2] tests: Move drv_ tests to i915 directory
  2018-10-25 13:44 ` [igt-dev] [PATCH i-g-t v2] " Arkadiusz Hiler
@ 2018-10-25 14:56   ` Chris Wilson
  2018-10-26  7:21     ` Arkadiusz Hiler
  0 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2018-10-25 14:56 UTC (permalink / raw)
  To: Arkadiusz Hiler, igt-dev; +Cc: Petri Latvala, Martin Peres

Quoting Arkadiusz Hiler (2018-10-25 14:44:36)
> The drv_ tests are i915 specific, so let's move them to i915 directory
> and change the binary prefix to i915_.
> 
> Additionally, while we at moving stuff around, let's rename
> module_reload to module_load and do the following cleanup with the
> subtests:
> 
>   basic-reload        -> reload
>   basic-no-display    -> reload-no-display
>   basic-reload-inject -> reload-with-fault-injection

Lgtm,
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
 
> Cc: Martin Peres <martin.peres@linux.intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Petri Latvala <petri.latvala@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

One of the others required to agree to the name change for CI. There's
some active bugs in this area, will that be a nuisance?
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2)
  2018-10-25 13:08 [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory Arkadiusz Hiler
  2018-10-25 13:21 ` Chris Wilson
  2018-10-25 13:44 ` [igt-dev] [PATCH i-g-t v2] " Arkadiusz Hiler
@ 2018-10-25 16:54 ` Patchwork
  2018-10-26  7:28   ` Arkadiusz Hiler
  2 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2018-10-25 16:54 UTC (permalink / raw)
  To: Arkadiusz Hiler; +Cc: igt-dev

== Series Details ==

Series: tests: Move drv_ tests to i915 directory (rev2)
URL   : https://patchwork.freedesktop.org/series/51519/
State : failure

== Summary ==

= CI Bug Log - changes from CI_DRM_5033 -> IGTPW_1995 =

== Summary - FAILURE ==

  Serious unknown changes coming with IGTPW_1995 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_1995, 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/51519/revisions/2/mbox/

== Possible new issues ==

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

  === IGT changes ===

    ==== Possible regressions ====

    {igt@i915_module_load@reload}:
      fi-glk-j4005:       NOTRUN -> DMESG-WARN

    igt@kms_chamelium@hdmi-hpd-fast:
      fi-icl-u2:          NOTRUN -> FAIL +3

    
    ==== Warnings ====

    igt@drv_selftest@live_contexts:
      fi-cfl-s3:          PASS -> NOTRUN +14

    igt@drv_selftest@live_dmabuf:
      fi-byt-n2820:       PASS -> NOTRUN +14
      fi-hsw-4770r:       PASS -> NOTRUN +14

    igt@drv_selftest@live_evict:
      fi-bsw-kefka:       PASS -> NOTRUN +14
      fi-kbl-x1275:       PASS -> NOTRUN +14

    igt@drv_selftest@live_gem:
      fi-skl-6600u:       PASS -> NOTRUN +14

    igt@drv_selftest@live_gtt:
      fi-byt-clapper:     PASS -> NOTRUN +14
      fi-kbl-8809g:       PASS -> NOTRUN +14
      fi-kbl-guc:         PASS -> NOTRUN +14
      fi-gdg-551:         PASS -> NOTRUN +14
      fi-kbl-7500u:       PASS -> NOTRUN +14

    igt@drv_selftest@live_guc:
      fi-hsw-peppy:       PASS -> NOTRUN +14
      fi-skl-guc:         PASS -> NOTRUN +14

    igt@drv_selftest@live_hugepages:
      fi-glk-dsi:         PASS -> NOTRUN +14

    igt@drv_selftest@live_objects:
      fi-bwr-2160:        PASS -> NOTRUN +14
      fi-bdw-5557u:       PASS -> NOTRUN +14
      fi-skl-6770hq:      PASS -> NOTRUN +14
      fi-skl-6700k2:      PASS -> NOTRUN +14
      fi-hsw-4770:        PASS -> NOTRUN +14
      fi-bxt-dsi:         PASS -> NOTRUN +14
      fi-skl-6260u:       PASS -> NOTRUN +14

    igt@drv_selftest@live_requests:
      fi-whl-u:           PASS -> NOTRUN +14
      fi-skl-gvtdvm:      PASS -> NOTRUN +14
      fi-ivb-3520m:       PASS -> NOTRUN +14
      fi-skl-6700hq:      PASS -> NOTRUN +14
      fi-bxt-j4205:       PASS -> NOTRUN +14
      fi-cfl-guc:         PASS -> NOTRUN +14
      fi-elk-e7500:       PASS -> NOTRUN +14

    igt@drv_selftest@live_sanitycheck:
      fi-bdw-gvtdvm:      PASS -> NOTRUN +14
      fi-ilk-650:         PASS -> NOTRUN +14
      fi-bsw-n3050:       PASS -> NOTRUN +14
      fi-cnl-u:           PASS -> NOTRUN +14
      fi-kbl-7567u:       PASS -> NOTRUN +14
      fi-glk-j4005:       PASS -> NOTRUN +14
      fi-skl-iommu:       PASS -> NOTRUN +14

    igt@drv_selftest@live_uncore:
      fi-kbl-7560u:       PASS -> NOTRUN +11

    igt@drv_selftest@live_workarounds:
      fi-apl-guc:         PASS -> NOTRUN +14
      fi-cfl-8700k:       PASS -> NOTRUN +14
      fi-kbl-r:           PASS -> NOTRUN +14
      fi-byt-j1900:       PASS -> NOTRUN +14
      fi-blb-e6850:       PASS -> NOTRUN +14

    igt@pm_rpm@module-reload:
      fi-hsw-4770r:       SKIP -> PASS

    
== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@debugfs_test@read_all_entries:
      fi-icl-u2:          NOTRUN -> DMESG-WARN (fdo#108070)

    igt@gem_exec_suspend@basic-s3:
      fi-icl-u2:          NOTRUN -> DMESG-WARN (fdo#106612)

    igt@gem_exec_suspend@basic-s4-devices:
      fi-kbl-7500u:       PASS -> DMESG-WARN (fdo#105128, fdo#107139)

    igt@kms_busy@basic-flip-b:
      fi-glk-j4005:       PASS -> DMESG-WARN (fdo#106097)

    igt@kms_flip@basic-flip-vs-wf_vblank:
      fi-glk-j4005:       PASS -> FAIL (fdo#100368)

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
      fi-byt-clapper:     PASS -> FAIL (fdo#107362, fdo#103191) +1

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

    
    ==== Possible fixes ====

    igt@drv_selftest@live_hangcheck:
      fi-kbl-7560u:       INCOMPLETE (fdo#108044) -> NOTRUN

    igt@kms_flip@basic-flip-vs-dpms:
      fi-skl-6700hq:      DMESG-WARN (fdo#105998) -> PASS

    igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
      fi-icl-u:           INCOMPLETE (fdo#107713) -> PASS

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

  fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
  fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
  fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008
  fdo#105128 https://bugs.freedesktop.org/show_bug.cgi?id=105128
  fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998
  fdo#106097 https://bugs.freedesktop.org/show_bug.cgi?id=106097
  fdo#106612 https://bugs.freedesktop.org/show_bug.cgi?id=106612
  fdo#107139 https://bugs.freedesktop.org/show_bug.cgi?id=107139
  fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
  fdo#107713 https://bugs.freedesktop.org/show_bug.cgi?id=107713
  fdo#108044 https://bugs.freedesktop.org/show_bug.cgi?id=108044
  fdo#108070 https://bugs.freedesktop.org/show_bug.cgi?id=108070


== Participating hosts (47 -> 44) ==

  Additional (1): fi-icl-u2 
  Missing    (4): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bsw-cyan 


== Build changes ==

    * IGT: IGT_4691 -> IGTPW_1995

  CI_DRM_5033: f935e4c7634781e6ffef10bb8a1c93225ac42d90 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1995: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1995/
  IGT_4691: d445be01f5edc7e7a324444c73e221c9ed75602e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@i915_getparams_basic@basic-eu-total
+igt@i915_getparams_basic@basic-subslice-total
+igt@i915_hangman@error-state-basic
+igt@i915_hangman@error-state-capture-blt
+igt@i915_hangman@error-state-capture-bsd
+igt@i915_hangman@error-state-capture-bsd1
+igt@i915_hangman@error-state-capture-bsd2
+igt@i915_hangman@error-state-capture-render
+igt@i915_hangman@error-state-capture-vebox
+igt@i915_hangman@error-state-sysfs-entry
+igt@i915_hangman@hangcheck-unterminated
+igt@i915_missed_irq
+igt@i915_module_load@reload
+igt@i915_module_load@reload-no-display
+igt@i915_module_load@reload-with-fault-injection
+igt@i915_suspend@debugfs-reader
+igt@i915_suspend@debugfs-reader-hibernate
+igt@i915_suspend@fence-restore-tiled2untiled
+igt@i915_suspend@fence-restore-tiled2untiled-hibernate
+igt@i915_suspend@fence-restore-untiled
+igt@i915_suspend@fence-restore-untiled-hibernate
+igt@i915_suspend@forcewake
+igt@i915_suspend@forcewake-hibernate
+igt@i915_suspend@shrink
+igt@i915_suspend@sysfs-reader
+igt@i915_suspend@sysfs-reader-hibernate
-igt@drv_getparams_basic@basic-eu-total
-igt@drv_getparams_basic@basic-subslice-total
-igt@drv_hangman@error-state-basic
-igt@drv_hangman@error-state-capture-blt
-igt@drv_hangman@error-state-capture-bsd
-igt@drv_hangman@error-state-capture-bsd1
-igt@drv_hangman@error-state-capture-bsd2
-igt@drv_hangman@error-state-capture-render
-igt@drv_hangman@error-state-capture-vebox
-igt@drv_hangman@error-state-sysfs-entry
-igt@drv_hangman@hangcheck-unterminated
-igt@drv_missed_irq
-igt@drv_module_reload@basic-no-display
-igt@drv_module_reload@basic-reload
-igt@drv_module_reload@basic-reload-inject
-igt@drv_suspend@debugfs-reader
-igt@drv_suspend@debugfs-reader-hibernate
-igt@drv_suspend@fence-restore-tiled2untiled
-igt@drv_suspend@fence-restore-tiled2untiled-hibernate
-igt@drv_suspend@fence-restore-untiled
-igt@drv_suspend@fence-restore-untiled-hibernate
-igt@drv_suspend@forcewake
-igt@drv_suspend@forcewake-hibernate
-igt@drv_suspend@shrink
-igt@drv_suspend@sysfs-reader
-igt@drv_suspend@sysfs-reader-hibernate

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t v2] tests: Move drv_ tests to i915 directory
  2018-10-25 14:56   ` Chris Wilson
@ 2018-10-26  7:21     ` Arkadiusz Hiler
  2018-10-26  7:30       ` Arkadiusz Hiler
  0 siblings, 1 reply; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-10-26  7:21 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, Petri Latvala, Martin Peres

On Thu, Oct 25, 2018 at 03:56:13PM +0100, Chris Wilson wrote:
> Quoting Arkadiusz Hiler (2018-10-25 14:44:36)
> > The drv_ tests are i915 specific, so let's move them to i915 directory
> > and change the binary prefix to i915_.
> > 
> > Additionally, while we at moving stuff around, let's rename
> > module_reload to module_load and do the following cleanup with the
> > subtests:
> > 
> >   basic-reload        -> reload
> >   basic-no-display    -> reload-no-display
> >   basic-reload-inject -> reload-with-fault-injection
> 
> Lgtm,
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
>  
> > Cc: Martin Peres <martin.peres@linux.intel.com>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Petri Latvala <petri.latvala@intel.com>
> > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> 
> One of the others required to agree to the name change for CI. There's
> some active bugs in this area, will that be a nuisance?
> -Chris

That's exactely why Martin is cced. He is managing the filters for CI
bugs, and he has to adjust them first, so we won't increase noise for
others. I'll merge this patch once we have his ack.
-Arek
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2)
  2018-10-25 16:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2) Patchwork
@ 2018-10-26  7:28   ` Arkadiusz Hiler
  0 siblings, 0 replies; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-10-26  7:28 UTC (permalink / raw)
  To: igt-dev; +Cc: Martin Peres

On Thu, Oct 25, 2018 at 04:54:54PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests: Move drv_ tests to i915 directory (rev2)
> URL   : https://patchwork.freedesktop.org/series/51519/
> State : failure
> 
> == Summary ==
> 
> = CI Bug Log - changes from CI_DRM_5033 -> IGTPW_1995 =
> 
> == Summary - FAILURE ==
> 
>   Serious unknown changes coming with IGTPW_1995 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_1995, 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/51519/revisions/2/mbox/
> 
> == Possible new issues ==
> 
>   Here are the unknown changes that may have been introduced in IGTPW_1995:
> 
>   === IGT changes ===
> 
>     ==== Possible regressions ====
> 
>     {igt@i915_module_load@reload}:
>       fi-glk-j4005:       NOTRUN -> DMESG-WARN

Caused by rename.

>     igt@kms_chamelium@hdmi-hpd-fast:
>       fi-icl-u2:          NOTRUN -> FAIL +3

Random noise.

<SNIP>

> == Testlist changes ==
> 
> +igt@i915_getparams_basic@basic-eu-total
> +igt@i915_getparams_basic@basic-subslice-total
> +igt@i915_hangman@error-state-basic
> +igt@i915_hangman@error-state-capture-blt
> +igt@i915_hangman@error-state-capture-bsd
> +igt@i915_hangman@error-state-capture-bsd1
> +igt@i915_hangman@error-state-capture-bsd2
> +igt@i915_hangman@error-state-capture-render
> +igt@i915_hangman@error-state-capture-vebox
> +igt@i915_hangman@error-state-sysfs-entry
> +igt@i915_hangman@hangcheck-unterminated
> +igt@i915_missed_irq
> +igt@i915_module_load@reload
> +igt@i915_module_load@reload-no-display
> +igt@i915_module_load@reload-with-fault-injection
> +igt@i915_suspend@debugfs-reader
> +igt@i915_suspend@debugfs-reader-hibernate
> +igt@i915_suspend@fence-restore-tiled2untiled
> +igt@i915_suspend@fence-restore-tiled2untiled-hibernate
> +igt@i915_suspend@fence-restore-untiled
> +igt@i915_suspend@fence-restore-untiled-hibernate
> +igt@i915_suspend@forcewake
> +igt@i915_suspend@forcewake-hibernate
> +igt@i915_suspend@shrink
> +igt@i915_suspend@sysfs-reader
> +igt@i915_suspend@sysfs-reader-hibernate
> -igt@drv_getparams_basic@basic-eu-total
> -igt@drv_getparams_basic@basic-subslice-total
> -igt@drv_hangman@error-state-basic
> -igt@drv_hangman@error-state-capture-blt
> -igt@drv_hangman@error-state-capture-bsd
> -igt@drv_hangman@error-state-capture-bsd1
> -igt@drv_hangman@error-state-capture-bsd2
> -igt@drv_hangman@error-state-capture-render
> -igt@drv_hangman@error-state-capture-vebox
> -igt@drv_hangman@error-state-sysfs-entry
> -igt@drv_hangman@hangcheck-unterminated
> -igt@drv_missed_irq
> -igt@drv_module_reload@basic-no-display
> -igt@drv_module_reload@basic-reload
> -igt@drv_module_reload@basic-reload-inject
> -igt@drv_suspend@debugfs-reader
> -igt@drv_suspend@debugfs-reader-hibernate
> -igt@drv_suspend@fence-restore-tiled2untiled
> -igt@drv_suspend@fence-restore-tiled2untiled-hibernate
> -igt@drv_suspend@fence-restore-untiled
> -igt@drv_suspend@fence-restore-untiled-hibernate
> -igt@drv_suspend@forcewake
> -igt@drv_suspend@forcewake-hibernate
> -igt@drv_suspend@shrink
> -igt@drv_suspend@sysfs-reader
> -igt@drv_suspend@sysfs-reader-hibernate

26 in, 26 out. Looks like I haven't missed anything.

https://gitlab.freedesktop.org/ivyl/igt/pipelines/6797

Here you can see it goin through the gitlab pipline.

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

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

* Re: [igt-dev] [PATCH i-g-t v2] tests: Move drv_ tests to i915 directory
  2018-10-26  7:21     ` Arkadiusz Hiler
@ 2018-10-26  7:30       ` Arkadiusz Hiler
  0 siblings, 0 replies; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-10-26  7:30 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, Tomi Sarvela, Petri Latvala, Martin Peres

On Fri, Oct 26, 2018 at 10:21:38AM +0300, Arkadiusz Hiler wrote:
> On Thu, Oct 25, 2018 at 03:56:13PM +0100, Chris Wilson wrote:
> > Quoting Arkadiusz Hiler (2018-10-25 14:44:36)
> > > The drv_ tests are i915 specific, so let's move them to i915 directory
> > > and change the binary prefix to i915_.
> > > 
> > > Additionally, while we at moving stuff around, let's rename
> > > module_reload to module_load and do the following cleanup with the
> > > subtests:
> > > 
> > >   basic-reload        -> reload
> > >   basic-no-display    -> reload-no-display
> > >   basic-reload-inject -> reload-with-fault-injection
> > 
> > Lgtm,
> > Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
> >  
> > > Cc: Martin Peres <martin.peres@linux.intel.com>
> > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > > Cc: Petri Latvala <petri.latvala@intel.com>
> > > Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
> > 
> > One of the others required to agree to the name change for CI. There's
> > some active bugs in this area, will that be a nuisance?
> > -Chris
> 
> That's exactely why Martin is cced. He is managing the filters for CI
> bugs, and he has to adjust them first, so we won't increase noise for
> others. I'll merge this patch once we have his ack.
> -Arek

Oh, and we are also moving i915 selftests. That requires some CI changed
by Petri/Tomi.
-Arek
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2018-10-26  7:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-25 13:08 [igt-dev] [PATCH i-g-t] tests: Move drv_ tests to i915 directory Arkadiusz Hiler
2018-10-25 13:21 ` Chris Wilson
2018-10-25 13:44 ` [igt-dev] [PATCH i-g-t v2] " Arkadiusz Hiler
2018-10-25 14:56   ` Chris Wilson
2018-10-26  7:21     ` Arkadiusz Hiler
2018-10-26  7:30       ` Arkadiusz Hiler
2018-10-25 16:54 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests: Move drv_ tests to i915 directory (rev2) Patchwork
2018-10-26  7:28   ` Arkadiusz Hiler

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.