public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Swati Sharma <swati2.sharma@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: lucas.demarchi@intel.com, martin.peres@intel.com,
	maarten.lankhorst@intel.com
Subject: [igt-dev] [PATCH i-g-t v2 3/7] tests/i915: remove igt_skip_on_simulation()
Date: Mon,  2 Dec 2019 19:33:12 +0530	[thread overview]
Message-ID: <20191202140316.3820-4-swati2.sharma@intel.com> (raw)
In-Reply-To: <20191202140316.3820-1-swati2.sharma@intel.com>

Removing igt_skip_on_simulation() from all i915 specific
tests since this feature is not supported anymore.

v2: Rebase

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Karthik B S <karthik.b.s@intel.com>
Reviewed-by: Martin Peres <martin.peres@linux.intel.com>
---
 tests/i915/i915_hangman.c          | 2 --
 tests/i915/i915_pm_backlight.c     | 2 --
 tests/i915/i915_pm_dc.c            | 1 -
 tests/i915/i915_pm_rc6_residency.c | 2 --
 tests/i915/i915_pm_rps.c           | 2 --
 tests/i915/i915_pm_sseu.c          | 3 ---
 tests/i915/i915_suspend.c          | 2 --
 7 files changed, 14 deletions(-)

diff --git a/tests/i915/i915_hangman.c b/tests/i915/i915_hangman.c
index 7a158d8d..e2dd58e8 100644
--- a/tests/i915/i915_hangman.c
+++ b/tests/i915/i915_hangman.c
@@ -260,8 +260,6 @@ igt_main
 	const struct intel_execution_engine2 *e;
 	igt_hang_t hang = {};
 
-	igt_skip_on_simulation();
-
 	igt_fixture {
 		device = drm_open_driver(DRIVER_INTEL);
 		igt_require_gem(device);
diff --git a/tests/i915/i915_pm_backlight.c b/tests/i915/i915_pm_backlight.c
index 9a5f4c37..83b1ed68 100644
--- a/tests/i915/i915_pm_backlight.c
+++ b/tests/i915/i915_pm_backlight.c
@@ -187,8 +187,6 @@ igt_main
 	igt_output_t *output;
 	struct igt_fb fb;
 
-	igt_skip_on_simulation();
-
 	igt_fixture {
 		enum pipe pipe;
 		bool found = false;
diff --git a/tests/i915/i915_pm_dc.c b/tests/i915/i915_pm_dc.c
index 2cf357a2..455d4ba1 100644
--- a/tests/i915/i915_pm_dc.c
+++ b/tests/i915/i915_pm_dc.c
@@ -381,7 +381,6 @@ int main(int argc, char *argv[])
 {
 	data_t data = {};
 
-	igt_skip_on_simulation();
 	igt_subtest_init(argc, argv);
 	igt_fixture {
 		data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
diff --git a/tests/i915/i915_pm_rc6_residency.c b/tests/i915/i915_pm_rc6_residency.c
index 1b52e4f5..1b39c870 100644
--- a/tests/i915/i915_pm_rc6_residency.c
+++ b/tests/i915/i915_pm_rc6_residency.c
@@ -200,8 +200,6 @@ igt_main
 	unsigned int rc6_enabled = 0;
 	unsigned int devid = 0;
 
-	igt_skip_on_simulation();
-
 	/* Use drm_open_driver to verify device existence */
 	igt_fixture {
 		int fd;
diff --git a/tests/i915/i915_pm_rps.c b/tests/i915/i915_pm_rps.c
index 51605f29..b65eefb0 100644
--- a/tests/i915/i915_pm_rps.c
+++ b/tests/i915/i915_pm_rps.c
@@ -628,8 +628,6 @@ static void pm_rps_exit_handler(int sig)
 
 igt_main
 {
-	igt_skip_on_simulation();
-
 	igt_fixture {
 		struct sysfs_file *sysfs_file = sysfs_files;
 		char sysfs_path[80];
diff --git a/tests/i915/i915_pm_sseu.c b/tests/i915/i915_pm_sseu.c
index 0b936982..e671e190 100644
--- a/tests/i915/i915_pm_sseu.c
+++ b/tests/i915/i915_pm_sseu.c
@@ -352,9 +352,6 @@ full_enable(void)
 	const int spin_msec = 10;
 	int ret, spins;
 
-	/* Simulation doesn't currently model slice/subslice/EU power gating. */
-	igt_skip_on_simulation();
-
 	/*
 	 * Gen9 SKL is the first case in which render power gating can leave
 	 * slice/subslice/EU in a partially enabled state upon resumption of
diff --git a/tests/i915/i915_suspend.c b/tests/i915/i915_suspend.c
index 17c68cc1..5a2ec766 100644
--- a/tests/i915/i915_suspend.c
+++ b/tests/i915/i915_suspend.c
@@ -205,8 +205,6 @@ int fd;
 
 igt_main
 {
-	igt_skip_on_simulation();
-
 	igt_fixture
 		fd = drm_open_driver(DRIVER_INTEL);
 
-- 
2.24.0

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

  parent reply	other threads:[~2019-12-02 14:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-02 14:03 [igt-dev] [PATCH i-g-t v2 0/7] removal of igt_skip_on_simulation() from i915/ tests Swati Sharma
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v3 1/7] tests/i915/gem: remove igt_skip_on_simulation() Swati Sharma
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v2 2/7] tests/i915/kms: " Swati Sharma
2019-12-02 14:03 ` Swati Sharma [this message]
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v3 4/7] tests: " Swati Sharma
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v2 5/7] tools: " Swati Sharma
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v2 6/7] benchmarks: " Swati Sharma
2019-12-02 14:03 ` [igt-dev] [PATCH i-g-t v2 7/7] lib: remove igt_skip_on_simulation Swati Sharma
2019-12-02 15:29 ` [igt-dev] ✓ Fi.CI.BAT: success for removal of igt_skip_on_simulation() from i915/ tests (rev4) Patchwork
2019-12-02 17:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2019-12-02  6:01 [igt-dev] [PATCH i-g-t v2 0/7] removal of igt_skip_on_simulation() from i915/ tests Swati Sharma
2019-12-02  6:01 ` [igt-dev] [PATCH i-g-t v2 3/7] tests/i915: remove igt_skip_on_simulation() Swati Sharma

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191202140316.3820-4-swati2.sharma@intel.com \
    --to=swati2.sharma@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=lucas.demarchi@intel.com \
    --cc=maarten.lankhorst@intel.com \
    --cc=martin.peres@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox