diff mbox series

[i-g-t] tests: Move perf/perf_pmu under i915

Message ID 20200618095014.252677-1-chris@chris-wilson.co.uk (mailing list archive)
State New, archived
Headers show
Series [i-g-t] tests: Move perf/perf_pmu under i915 | expand

Commit Message

Chris Wilson June 18, 2020, 9:50 a.m. UTC
These are i915 specific tests of the perf and perf-workalike interfaces,
so move them under i915/

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/Makefile.sources      | 8 ++++++--
 tests/{ => i915}/perf.c     | 0
 tests/{ => i915}/perf_pmu.c | 0
 tests/meson.build           | 6 ++++--
 4 files changed, 10 insertions(+), 4 deletions(-)
 rename tests/{ => i915}/perf.c (100%)
 rename tests/{ => i915}/perf_pmu.c (100%)

Comments

Lionel Landwerlin June 18, 2020, 9:52 a.m. UTC | #1
On 18/06/2020 12:50, Chris Wilson wrote:
> These are i915 specific tests of the perf and perf-workalike interfaces,
> so move them under i915/
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> ---
>   tests/Makefile.sources      | 8 ++++++--
>   tests/{ => i915}/perf.c     | 0
>   tests/{ => i915}/perf_pmu.c | 0
>   tests/meson.build           | 6 ++++--
>   4 files changed, 10 insertions(+), 4 deletions(-)
>   rename tests/{ => i915}/perf.c (100%)
>   rename tests/{ => i915}/perf_pmu.c (100%)
>
> diff --git a/tests/Makefile.sources b/tests/Makefile.sources
> index eaa6c0d04..af900bcfc 100644
> --- a/tests/Makefile.sources
> +++ b/tests/Makefile.sources
> @@ -88,8 +88,6 @@ TESTS_progs = \
>   	kms_vblank \
>   	kms_vrr \
>   	meta_test \
> -	perf \
> -	perf_pmu \
>   	prime_busy \
>   	prime_mmap \
>   	prime_mmap_coherency \
> @@ -115,6 +113,12 @@ sysfs_preempt_timeout_SOURCES = i915/sysfs_preempt_timeout.c
>   TESTS_progs += sysfs_timeslice_duration
>   sysfs_timeslice_duration_SOURCES = i915/sysfs_timeslice_duration.c
>   
> +TESTS_progs += perf
> +perf_SOURCES = i915/perf.c
> +
> +TESTS_progs += perf_pmu
> +perf_pmu_SOURCES = i915/perf_pmu.c
> +
>   TESTS_progs += gem_bad_reloc
>   gem_bad_reloc_SOURCES = i915/gem_bad_reloc.c
>   
> diff --git a/tests/perf.c b/tests/i915/perf.c
> similarity index 100%
> rename from tests/perf.c
> rename to tests/i915/perf.c
> diff --git a/tests/perf_pmu.c b/tests/i915/perf_pmu.c
> similarity index 100%
> rename from tests/perf_pmu.c
> rename to tests/i915/perf_pmu.c
> diff --git a/tests/meson.build b/tests/meson.build
> index e69bdb7d0..28091794f 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -336,14 +336,16 @@ test_executables += executable('i915_pm_rc6_residency',
>   	   install : true)
>   test_list += 'i915_pm_rc6_residency'
>   
> -test_executables += executable('perf_pmu', 'perf_pmu.c',
> +test_executables += executable('perf_pmu',
> +	   join_paths('i915', 'perf_pmu.c'),
>   	   dependencies : test_deps + [ lib_igt_perf ],
>   	   install_dir : libexecdir,
>   	   install_rpath : libexecdir_rpathdir,
>   	   install : true)
>   test_list += 'perf_pmu'
>   
> -test_executables += executable('perf', 'perf.c',
> +test_executables += executable('perf',
> +	   join_paths('i915', 'perf.c'),
>   	   dependencies : test_deps + [ lib_igt_i915_perf ],
>   	   install_dir : libexecdir,
>   	   install_rpath : libexecdir_rpathdir,
diff mbox series

Patch

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index eaa6c0d04..af900bcfc 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -88,8 +88,6 @@  TESTS_progs = \
 	kms_vblank \
 	kms_vrr \
 	meta_test \
-	perf \
-	perf_pmu \
 	prime_busy \
 	prime_mmap \
 	prime_mmap_coherency \
@@ -115,6 +113,12 @@  sysfs_preempt_timeout_SOURCES = i915/sysfs_preempt_timeout.c
 TESTS_progs += sysfs_timeslice_duration
 sysfs_timeslice_duration_SOURCES = i915/sysfs_timeslice_duration.c
 
+TESTS_progs += perf
+perf_SOURCES = i915/perf.c
+
+TESTS_progs += perf_pmu
+perf_pmu_SOURCES = i915/perf_pmu.c
+
 TESTS_progs += gem_bad_reloc
 gem_bad_reloc_SOURCES = i915/gem_bad_reloc.c
 
diff --git a/tests/perf.c b/tests/i915/perf.c
similarity index 100%
rename from tests/perf.c
rename to tests/i915/perf.c
diff --git a/tests/perf_pmu.c b/tests/i915/perf_pmu.c
similarity index 100%
rename from tests/perf_pmu.c
rename to tests/i915/perf_pmu.c
diff --git a/tests/meson.build b/tests/meson.build
index e69bdb7d0..28091794f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -336,14 +336,16 @@  test_executables += executable('i915_pm_rc6_residency',
 	   install : true)
 test_list += 'i915_pm_rc6_residency'
 
-test_executables += executable('perf_pmu', 'perf_pmu.c',
+test_executables += executable('perf_pmu',
+	   join_paths('i915', 'perf_pmu.c'),
 	   dependencies : test_deps + [ lib_igt_perf ],
 	   install_dir : libexecdir,
 	   install_rpath : libexecdir_rpathdir,
 	   install : true)
 test_list += 'perf_pmu'
 
-test_executables += executable('perf', 'perf.c',
+test_executables += executable('perf',
+	   join_paths('i915', 'perf.c'),
 	   dependencies : test_deps + [ lib_igt_i915_perf ],
 	   install_dir : libexecdir,
 	   install_rpath : libexecdir_rpathdir,