* [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature'
@ 2015-11-25 12:12 Gabriel Feceoru
2015-11-26 16:43 ` Thomas Wood
2015-11-27 14:56 ` [PATCH i-g-t v2] tests: " Gabriel Feceoru
0 siblings, 2 replies; 4+ messages in thread
From: Gabriel Feceoru @ 2015-11-25 12:12 UTC (permalink / raw)
To: intel-gfx
This is a placeholder for the feature list file. Its content is just
an example.
This needs to be filled in by feature owners with the feature name
and the corresponding tests regex.
Please refer to this piglit commit for more info on this feature.
commit f16d011db75b08ceae241e7370599146691340ab
Author: Feceoru, Gabriel <gabriel.feceoru@intel.com>
Date: Tue Nov 3 17:50:41 2015 +0200
framework: Add support for feature readiness.
Signed-off-by: Gabriel Feceoru <gabriel.feceoru@intel.com>
---
scripts/feat_profile.json | 12 ++++++++++++
1 file changed, 12 insertions(+)
create mode 100644 scripts/feat_profile.json
diff --git a/scripts/feat_profile.json b/scripts/feat_profile.json
new file mode 100644
index 0000000..f3a21a3
--- /dev/null
+++ b/scripts/feat_profile.json
@@ -0,0 +1,12 @@
+{
+ "glsl" : {
+ "include_tests" : "glsl",
+ "exclude_tests" : "",
+ "target_rate" : 90
+ },
+ "arb" : {
+ "include_tests" : "ARB_shader|deqp.arb shader",
+ "exclude_tests" : "",
+ "target_rate" : 10
+ }
+}
--
1.9.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature'
2015-11-25 12:12 [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature' Gabriel Feceoru
@ 2015-11-26 16:43 ` Thomas Wood
2015-11-27 15:04 ` Gabriel Feceoru
2015-11-27 14:56 ` [PATCH i-g-t v2] tests: " Gabriel Feceoru
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Wood @ 2015-11-26 16:43 UTC (permalink / raw)
To: Gabriel Feceoru; +Cc: Intel Graphics Development
On 25 November 2015 at 12:12, Gabriel Feceoru <gabriel.feceoru@intel.com> wrote:
> This is a placeholder for the feature list file. Its content is just
> an example.
It would be useful if the example applied directly to intel-gpu-tools
tests. Perhaps just a single feature to start with?
Since this isn't a script as such, would it be better placed in the
tests directory where the test list is generated?
It would probably be useful to integrate it with the run-tests.sh
script as well.
> This needs to be filled in by feature owners with the feature name
> and the corresponding tests regex.
>
> Please refer to this piglit commit for more info on this feature.
>
> commit f16d011db75b08ceae241e7370599146691340ab
> Author: Feceoru, Gabriel <gabriel.feceoru@intel.com>
> Date: Tue Nov 3 17:50:41 2015 +0200
>
> framework: Add support for feature readiness.
>
> Signed-off-by: Gabriel Feceoru <gabriel.feceoru@intel.com>
> ---
> scripts/feat_profile.json | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
> create mode 100644 scripts/feat_profile.json
>
> diff --git a/scripts/feat_profile.json b/scripts/feat_profile.json
> new file mode 100644
> index 0000000..f3a21a3
> --- /dev/null
> +++ b/scripts/feat_profile.json
> @@ -0,0 +1,12 @@
> +{
> + "glsl" : {
> + "include_tests" : "glsl",
> + "exclude_tests" : "",
> + "target_rate" : 90
> + },
> + "arb" : {
> + "include_tests" : "ARB_shader|deqp.arb shader",
> + "exclude_tests" : "",
> + "target_rate" : 10
> + }
> +}
> --
> 1.9.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH i-g-t v2] tests: Add feature list file for piglit 'summary feature'
2015-11-25 12:12 [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature' Gabriel Feceoru
2015-11-26 16:43 ` Thomas Wood
@ 2015-11-27 14:56 ` Gabriel Feceoru
1 sibling, 0 replies; 4+ messages in thread
From: Gabriel Feceoru @ 2015-11-27 14:56 UTC (permalink / raw)
To: intel-gfx
This is a placeholder for the feature list file.
This needs to be filled in by feature owners with the feature name
and the corresponding tests regex.
Please refer to this piglit commit for more info on this feature.
commit f16d011db75b08ceae241e7370599146691340ab
Author: Feceoru, Gabriel <gabriel.feceoru@intel.com>
Date: Tue Nov 3 17:50:41 2015 +0200
framework: Add support for feature readiness.
v2:
- Moved the file to tests directory
- Replaced the example with a real feature
Signed-off-by: Gabriel Feceoru <gabriel.feceoru@intel.com>
---
tests/feat_profile.json | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 tests/feat_profile.json
diff --git a/tests/feat_profile.json b/tests/feat_profile.json
new file mode 100644
index 0000000..251dfd9
--- /dev/null
+++ b/tests/feat_profile.json
@@ -0,0 +1,7 @@
+{
+ "psr" : {
+ "include_tests" : "psr",
+ "exclude_tests" : "",
+ "target_rate" : 90
+ }
+}
--
1.9.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature'
2015-11-26 16:43 ` Thomas Wood
@ 2015-11-27 15:04 ` Gabriel Feceoru
0 siblings, 0 replies; 4+ messages in thread
From: Gabriel Feceoru @ 2015-11-27 15:04 UTC (permalink / raw)
To: Thomas Wood; +Cc: Intel Graphics Development
On 26.11.2015 18:43, Thomas Wood wrote:
> On 25 November 2015 at 12:12, Gabriel Feceoru <gabriel.feceoru@intel.com> wrote:
>> This is a placeholder for the feature list file. Its content is just
>> an example.
>
> It would be useful if the example applied directly to intel-gpu-tools
> tests. Perhaps just a single feature to start with?
>
> Since this isn't a script as such, would it be better placed in the
> tests directory where the test list is generated?
Agree. Provided a 2nd version with these suggestions.
>
> It would probably be useful to integrate it with the run-tests.sh
> script as well.
Ok, but better in a separate patch. I think we need to get some
usability feedback on this one, to see what to add in run-tests.sh
(not sure if we stay with one file or use custom ones, as per need)
>
>
>> This needs to be filled in by feature owners with the feature name
>> and the corresponding tests regex.
>>
>> Please refer to this piglit commit for more info on this feature.
>>
>> commit f16d011db75b08ceae241e7370599146691340ab
>> Author: Feceoru, Gabriel <gabriel.feceoru@intel.com>
>> Date: Tue Nov 3 17:50:41 2015 +0200
>>
>> framework: Add support for feature readiness.
>>
>> Signed-off-by: Gabriel Feceoru <gabriel.feceoru@intel.com>
>> ---
>> scripts/feat_profile.json | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>> create mode 100644 scripts/feat_profile.json
>>
>> diff --git a/scripts/feat_profile.json b/scripts/feat_profile.json
>> new file mode 100644
>> index 0000000..f3a21a3
>> --- /dev/null
>> +++ b/scripts/feat_profile.json
>> @@ -0,0 +1,12 @@
>> +{
>> + "glsl" : {
>> + "include_tests" : "glsl",
>> + "exclude_tests" : "",
>> + "target_rate" : 90
>> + },
>> + "arb" : {
>> + "include_tests" : "ARB_shader|deqp.arb shader",
>> + "exclude_tests" : "",
>> + "target_rate" : 10
>> + }
>> +}
>> --
>> 1.9.1
>>
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-27 14:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-25 12:12 [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature' Gabriel Feceoru
2015-11-26 16:43 ` Thomas Wood
2015-11-27 15:04 ` Gabriel Feceoru
2015-11-27 14:56 ` [PATCH i-g-t v2] tests: " Gabriel Feceoru
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox