* ✗ CI.Patch_applied: failure for tests/intel-ci: Fix a syntax err in xe.blocklist.txt
2025-01-14 17:35 [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt Oak Zeng
@ 2025-01-14 17:28 ` Patchwork
2025-01-15 8:02 ` [i-g-t] " Thomas Hellström
1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2025-01-14 17:28 UTC (permalink / raw)
To: Oak Zeng; +Cc: intel-xe
== Series Details ==
Series: tests/intel-ci: Fix a syntax err in xe.blocklist.txt
URL : https://patchwork.freedesktop.org/series/143519/
State : failure
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 87f85ad359b4 drm-tip: 2025y-01m-14d-16h-49m-14s UTC integration manifest
=== git am output follows ===
error: tests/intel-ci/xe.blocklist.txt: does not exist in index
hint: Use 'git am --show-current-patch=diff' to see the failed patch
Applying: tests/intel-ci: Fix a syntax err in xe.blocklist.txt
Patch failed at 0001 tests/intel-ci: Fix a syntax err in xe.blocklist.txt
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
^ permalink raw reply [flat|nested] 4+ messages in thread
* [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt
@ 2025-01-14 17:35 Oak Zeng
2025-01-14 17:28 ` ✗ CI.Patch_applied: failure for " Patchwork
2025-01-15 8:02 ` [i-g-t] " Thomas Hellström
0 siblings, 2 replies; 4+ messages in thread
From: Oak Zeng @ 2025-01-14 17:35 UTC (permalink / raw)
To: intel-xe, igt-dev; +Cc: Thomas.Hellstrom
The syntax in below lines are wrong:
igt@xe_evict@*-multi-vm-cm*
igt@xe_evict@*-threads-*
With above, those xe_evict tests are not blacklisted from xe.ci.full category.
Fix the issue by adding a dot (.) preceding star (*).
Signed-off-by: Oak Zeng <oak.zeng@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
tests/intel-ci/xe.blocklist.txt | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index a9b647c1d..fc270198f 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -93,7 +93,7 @@ igt@sriov_basic@bind-unbind-vf$
# Exclude xe_evict tests that are not expected to succeed
# due to missing TTM exhaustive eviction
##################################################################
-igt@xe_evict@*-multi-vm-cm*
-igt@xe_evict@*-threads-*
-# igt@xe_evict@*-cm* # Rebind and VM_BIND may race.
+igt@xe_evict@.*-multi-vm-cm.*
+igt@xe_evict@.*-threads-.*
+# igt@xe_evict@.*-cm.* # Rebind and VM_BIND may race.
##################################################################
--
2.26.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt
2025-01-14 17:35 [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt Oak Zeng
2025-01-14 17:28 ` ✗ CI.Patch_applied: failure for " Patchwork
@ 2025-01-15 8:02 ` Thomas Hellström
2025-01-15 11:09 ` Kamil Konieczny
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Hellström @ 2025-01-15 8:02 UTC (permalink / raw)
To: Oak Zeng, intel-xe, igt-dev
On Tue, 2025-01-14 at 12:35 -0500, Oak Zeng wrote:
> The syntax in below lines are wrong:
>
> igt@xe_evict@*-multi-vm-cm*
> igt@xe_evict@*-threads-*
>
> With above, those xe_evict tests are not blacklisted from xe.ci.full
> category.
>
> Fix the issue by adding a dot (.) preceding star (*).
>
> Signed-off-by: Oak Zeng <oak.zeng@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> tests/intel-ci/xe.blocklist.txt | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-
> ci/xe.blocklist.txt
> index a9b647c1d..fc270198f 100644
> --- a/tests/intel-ci/xe.blocklist.txt
> +++ b/tests/intel-ci/xe.blocklist.txt
> @@ -93,7 +93,7 @@ igt@sriov_basic@bind-unbind-vf$
> # Exclude xe_evict tests that are not expected to succeed
> # due to missing TTM exhaustive eviction
> ##################################################################
> -igt@xe_evict@*-multi-vm-cm*
> -igt@xe_evict@*-threads-*
> -# igt@xe_evict@*-cm* # Rebind and VM_BIND may race.
> +igt@xe_evict@.*-multi-vm-cm.*
> +igt@xe_evict@.*-threads-.*
> +# igt@xe_evict@.*-cm.* # Rebind and VM_BIND may race.
> ##################################################################
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt
2025-01-15 8:02 ` [i-g-t] " Thomas Hellström
@ 2025-01-15 11:09 ` Kamil Konieczny
0 siblings, 0 replies; 4+ messages in thread
From: Kamil Konieczny @ 2025-01-15 11:09 UTC (permalink / raw)
To: Thomas Hellström; +Cc: Oak Zeng, intel-xe, igt-dev
Hi Thomas,
On 2025-01-15 at 09:02:20 +0100, Thomas Hellström wrote:
> On Tue, 2025-01-14 at 12:35 -0500, Oak Zeng wrote:
> > The syntax in below lines are wrong:
> >
> > igt@xe_evict@*-multi-vm-cm*
> > igt@xe_evict@*-threads-*
> >
> > With above, those xe_evict tests are not blacklisted from xe.ci.full
I merged this with correction s/blacklisted/removed/
> > category.
> >
> > Fix the issue by adding a dot (.) preceding star (*).
> >
> > Signed-off-by: Oak Zeng <oak.zeng@intel.com>
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>
Sorry, I didn't see this at merge time.
Regards,
Kamil
> > ---
> > tests/intel-ci/xe.blocklist.txt | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-
> > ci/xe.blocklist.txt
> > index a9b647c1d..fc270198f 100644
> > --- a/tests/intel-ci/xe.blocklist.txt
> > +++ b/tests/intel-ci/xe.blocklist.txt
> > @@ -93,7 +93,7 @@ igt@sriov_basic@bind-unbind-vf$
> > # Exclude xe_evict tests that are not expected to succeed
> > # due to missing TTM exhaustive eviction
> > ##################################################################
> > -igt@xe_evict@*-multi-vm-cm*
> > -igt@xe_evict@*-threads-*
> > -# igt@xe_evict@*-cm* # Rebind and VM_BIND may race.
> > +igt@xe_evict@.*-multi-vm-cm.*
> > +igt@xe_evict@.*-threads-.*
> > +# igt@xe_evict@.*-cm.* # Rebind and VM_BIND may race.
> > ##################################################################
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-15 11:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-14 17:35 [i-g-t] tests/intel-ci: Fix a syntax err in xe.blocklist.txt Oak Zeng
2025-01-14 17:28 ` ✗ CI.Patch_applied: failure for " Patchwork
2025-01-15 8:02 ` [i-g-t] " Thomas Hellström
2025-01-15 11:09 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox