From: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com>,
Kamil Konieczny <kamil.konieczny@linux.intel.com>
Subject: [PATCH i-g-t 1/3] tests/panfrost: Move Panfrost tests to new dir
Date: Mon, 10 Jun 2024 13:31:47 +0530 [thread overview]
Message-ID: <20240610080150.3610871-2-bhanuprakash.modem@intel.com> (raw)
In-Reply-To: <20240610080150.3610871-1-bhanuprakash.modem@intel.com>
Move all Panfrost specific tests (tests/panfrost_*) to
new dir (tests/panfrost/panfrost_*).
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
meson.build | 8 ++++++++
tests/meson.build | 6 ++----
tests/panfrost/meson.build | 15 +++++++++++++++
tests/{ => panfrost}/panfrost_gem_new.c | 0
tests/{ => panfrost}/panfrost_get_param.c | 0
tests/{ => panfrost}/panfrost_prime.c | 0
tests/{ => panfrost}/panfrost_submit.c | 0
7 files changed, 25 insertions(+), 4 deletions(-)
create mode 100644 tests/panfrost/meson.build
rename tests/{ => panfrost}/panfrost_gem_new.c (100%)
rename tests/{ => panfrost}/panfrost_get_param.c (100%)
rename tests/{ => panfrost}/panfrost_prime.c (100%)
rename tests/{ => panfrost}/panfrost_submit.c (100%)
diff --git a/meson.build b/meson.build
index ab44aadb1..701a5cc35 100644
--- a/meson.build
+++ b/meson.build
@@ -276,6 +276,7 @@ includedir = get_option('includedir')
libdir = get_option('libdir')
libexecdir = join_paths(get_option('libexecdir'), 'igt-gpu-tools')
amdgpudir = join_paths(libexecdir, 'amdgpu')
+panfrostdir = join_paths(libexecdir, 'panfrost')
v3ddir = join_paths(libexecdir, 'v3d')
vc4dir = join_paths(libexecdir, 'vc4')
vmwgfxdir = join_paths(libexecdir, 'vmwgfx')
@@ -315,6 +316,12 @@ if get_option('use_rpath')
endforeach
amdgpudir_rpathdir = join_paths(amdgpudir_rpathdir, libdir)
+ panfrost_rpathdir = '$ORIGIN'
+ foreach p : panfrostdir.split('/')
+ panfrost_rpathdir = join_paths(panfrost_rpathdir, '..')
+ endforeach
+ panfrost_rpathdir = join_paths(panfrost_rpathdir, libdir)
+
v3d_rpathdir = '$ORIGIN'
foreach p : v3ddir.split('/')
v3d_rpathdir = join_paths(v3d_rpathdir, '..')
@@ -336,6 +343,7 @@ else
bindir_rpathdir = ''
libexecdir_rpathdir = ''
amdgpudir_rpathdir = ''
+ panfrost_rpathdir = ''
v3d_rpathdir = ''
vc4_rpathdir = ''
vmwgfx_rpathdir = ''
diff --git a/tests/meson.build b/tests/meson.build
index 758ae090c..16896de99 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -65,10 +65,6 @@ test_progs = [
'kms_vrr',
'kms_writeback',
'meta_test',
- 'panfrost_get_param',
- 'panfrost_gem_new',
- 'panfrost_prime',
- 'panfrost_submit',
'prime_udl',
'prime_vgem',
'sriov_basic',
@@ -461,6 +457,8 @@ endif
subdir('amdgpu')
+subdir('panfrost')
+
subdir('v3d')
subdir('vc4')
diff --git a/tests/panfrost/meson.build b/tests/panfrost/meson.build
new file mode 100644
index 000000000..b633d1be9
--- /dev/null
+++ b/tests/panfrost/meson.build
@@ -0,0 +1,15 @@
+panfrost_progs = [
+ 'panfrost_get_param',
+ 'panfrost_gem_new',
+ 'panfrost_prime',
+ 'panfrost_submit',
+]
+
+foreach prog : panfrost_progs
+ test_executables += executable(prog, prog + '.c',
+ dependencies : test_deps,
+ install_dir : panfrostdir,
+ install_rpath : panfrost_rpathdir,
+ install : true)
+ test_list += join_paths('panfrost', prog)
+endforeach
diff --git a/tests/panfrost_gem_new.c b/tests/panfrost/panfrost_gem_new.c
similarity index 100%
rename from tests/panfrost_gem_new.c
rename to tests/panfrost/panfrost_gem_new.c
diff --git a/tests/panfrost_get_param.c b/tests/panfrost/panfrost_get_param.c
similarity index 100%
rename from tests/panfrost_get_param.c
rename to tests/panfrost/panfrost_get_param.c
diff --git a/tests/panfrost_prime.c b/tests/panfrost/panfrost_prime.c
similarity index 100%
rename from tests/panfrost_prime.c
rename to tests/panfrost/panfrost_prime.c
diff --git a/tests/panfrost_submit.c b/tests/panfrost/panfrost_submit.c
similarity index 100%
rename from tests/panfrost_submit.c
rename to tests/panfrost/panfrost_submit.c
--
2.43.2
next prev parent reply other threads:[~2024-06-10 8:09 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-10 8:01 [PATCH i-g-t 0/3] IGT cleanup Bhanuprakash Modem
2024-06-10 8:01 ` Bhanuprakash Modem [this message]
2024-06-11 16:33 ` [PATCH i-g-t 1/3] tests/panfrost: Move Panfrost tests to new dir Kamil Konieczny
2024-06-10 8:01 ` [PATCH i-g-t 2/3] tests/msm: Move MSM " Bhanuprakash Modem
2024-06-10 10:50 ` Kamil Konieczny
2024-06-11 16:39 ` Kamil Konieczny
2024-06-11 18:36 ` Rob Clark
2024-06-10 8:01 ` [PATCH i-g-t 3/3] tests/intel-ci: Update blocklists Bhanuprakash Modem
2024-06-11 16:37 ` Kamil Konieczny
2024-06-10 8:51 ` ✓ CI.xeBAT: success for IGT cleanup (rev10) Patchwork
2024-06-10 9:01 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-06-10 10:26 ` ✗ CI.xeFULL: " Patchwork
2024-06-11 16:56 ` Kamil Konieczny
2024-06-11 16:41 ` [PATCH i-g-t 0/3] IGT cleanup Kamil Konieczny
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=20240610080150.3610871-2-bhanuprakash.modem@intel.com \
--to=bhanuprakash.modem@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kamil.konieczny@linux.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