public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll
@ 2018-01-16 11:13 Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 2/4] meson: Add quotes in man/rst2man.sh Petri Latvala
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Petri Latvala @ 2018-01-16 11:13 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 tools/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/meson.build b/tools/meson.build
index 7fc5390a..4258853e 100644
--- a/tools/meson.build
+++ b/tools/meson.build
@@ -1,4 +1,5 @@
 tools_progs_noisnt = [
+	'cnl_compute_wrpll',
 	'hsw_compute_wrpll',
 	'skl_compute_wrpll',
 	'skl_ddb_allocation',
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH i-g-t 2/4] meson: Add quotes in man/rst2man.sh
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
@ 2018-01-16 11:13 ` Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 3/4] meson: Add quotes in assembler/test/run-test.sh Petri Latvala
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Petri Latvala @ 2018-01-16 11:13 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

If the directories contain spaces, rst2man.sh fails.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 man/rst2man.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/man/rst2man.sh b/man/rst2man.sh
index fc2b5ed8..8106ca4b 100755
--- a/man/rst2man.sh
+++ b/man/rst2man.sh
@@ -3,14 +3,14 @@
 input=$1
 output=$2
 
-out_dir=$(dirname ${output})
-in_file=$(basename ${input})
+out_dir=$(dirname "${output}")
+in_file=$(basename "${input}")
 
 # rst2man doesn't handle multiple source directories well, and since defs.rst is
 # generated we first need to move it all into the build dir
-cp $input $out_dir
+cp "$input" "$out_dir"
 
-rst2man $out_dir/$in_file ${output%.gz}
+rst2man "$out_dir/$in_file" "${output%.gz}"
 
-rm -f ${output}
-gzip ${output%.gz}
+rm -f "${output}"
+gzip "${output%.gz}"
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH i-g-t 3/4] meson: Add quotes in assembler/test/run-test.sh
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 2/4] meson: Add quotes in man/rst2man.sh Petri Latvala
@ 2018-01-16 11:13 ` Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools Petri Latvala
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Petri Latvala @ 2018-01-16 11:13 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

If the directories contain spaces, run-test.sh fails.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 assembler/test/run-test.sh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/assembler/test/run-test.sh b/assembler/test/run-test.sh
index b06e1044..f5e1a8fb 100644
--- a/assembler/test/run-test.sh
+++ b/assembler/test/run-test.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 
-SRCDIR=${srcdir-`pwd`}
-BUILDDIR=${top_builddir-`pwd`}
+SRCDIR="${srcdir-`pwd`}"
+BUILDDIR="${top_builddir-`pwd`}"
 
 test="TEST"
 
@@ -9,11 +9,11 @@ if [ -n "$1" ] ; then
 	test="$1"
 fi
 
-test -d ${BUILDDIR}/test || mkdir ${BUILDDIR}/test/
+test -d "${BUILDDIR}/test" || mkdir "${BUILDDIR}/test/"
 
-${BUILDDIR}/intel-gen4asm -o ${BUILDDIR}/${test}.out $SRCDIR/${test}.g4a
-if cmp ${BUILDDIR}/${test}.out ${SRCDIR}/${test}.expected 2> /dev/null; then : ; else
+"${BUILDDIR}/intel-gen4asm" -o "${BUILDDIR}/${test}.out" "$SRCDIR/${test}.g4a"
+if cmp "${BUILDDIR}/${test}.out" "${SRCDIR}/${test}.expected" 2> /dev/null; then : ; else
   echo "Output comparison for ${test}"
-  diff -u ${SRCDIR}/${test}.expected ${test}.out
+  diff -u "${SRCDIR}/${test}.expected" "${test}.out"
   exit 1;
 fi
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 2/4] meson: Add quotes in man/rst2man.sh Petri Latvala
  2018-01-16 11:13 ` [PATCH i-g-t 3/4] meson: Add quotes in assembler/test/run-test.sh Petri Latvala
@ 2018-01-16 11:13 ` Petri Latvala
  2018-01-17  9:30   ` [igt-dev] " Jani Nikula
  2018-01-16 12:35 ` [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Arkadiusz Hiler
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 8+ messages in thread
From: Petri Latvala @ 2018-01-16 11:13 UTC (permalink / raw)
  To: igt-dev; +Cc: intel-gfx

Eventually we're switching the official name to "IGT GPU Tools", but
right now there's still a lot of hardcoding to intel-gpu-tools that is
to be fixed in the near future.

Rename the project in toplevel meson.build to intel-gpu-tools to get
meson to generate tarballs roughly the same as autotools in 'dist'.

Signed-off-by: Petri Latvala <petri.latvala@intel.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 0950d3c7..36403352 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('IGT gpu tests', 'c',
+project('intel-gpu-tools', 'c',
 	version : '1.20',
         default_options: [
           'warning_level=2',
-- 
2.14.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
                   ` (2 preceding siblings ...)
  2018-01-16 11:13 ` [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools Petri Latvala
@ 2018-01-16 12:35 ` Arkadiusz Hiler
  2018-01-16 12:42 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork
  2018-01-16 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Arkadiusz Hiler @ 2018-01-16 12:35 UTC (permalink / raw)
  To: Petri Latvala; +Cc: igt-dev, intel-gfx

On Tue, Jan 16, 2018 at 01:13:03PM +0200, Petri Latvala wrote:
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>

Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

one the whole series

-- 
Cheers,
Arek
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.BAT: success for series starting with [1/4] meson: Build cnl_compute_wrpll
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
                   ` (3 preceding siblings ...)
  2018-01-16 12:35 ` [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Arkadiusz Hiler
@ 2018-01-16 12:42 ` Patchwork
  2018-01-16 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2018-01-16 12:42 UTC (permalink / raw)
  To: Petri Latvala; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/4] meson: Build cnl_compute_wrpll
URL   : https://patchwork.freedesktop.org/series/36525/
State : success

== Summary ==

IGT patchset tested on top of latest successful build
84a308022028a55903a1916fcee516aab768ed48 tests/kms_plane: Run test for all supported pixel formats, v2.

with latest DRM-Tip kernel build CI_DRM_3636
a0ca279440c8 drm-tip: 2018y-01m-16d-10h-49m-51s UTC integration manifest

No testlist changes.

Test debugfs_test:
        Subgroup read_all_entries:
                dmesg-warn -> PASS       (fi-elk-e7500) fdo#103989

fdo#103989 https://bugs.freedesktop.org/show_bug.cgi?id=103989

fi-bdw-5557u     total:288  pass:267  dwarn:0   dfail:0   fail:0   skip:21  time:422s
fi-bdw-gvtdvm    total:288  pass:264  dwarn:0   dfail:0   fail:0   skip:24  time:425s
fi-blb-e6850     total:288  pass:223  dwarn:1   dfail:0   fail:0   skip:64  time:371s
fi-bsw-n3050     total:288  pass:242  dwarn:0   dfail:0   fail:0   skip:46  time:493s
fi-bwr-2160      total:288  pass:183  dwarn:0   dfail:0   fail:0   skip:105 time:283s
fi-bxt-dsi       total:288  pass:258  dwarn:0   dfail:0   fail:0   skip:30  time:491s
fi-bxt-j4205     total:288  pass:259  dwarn:0   dfail:0   fail:0   skip:29  time:493s
fi-byt-j1900     total:288  pass:253  dwarn:0   dfail:0   fail:0   skip:35  time:470s
fi-byt-n2820     total:288  pass:249  dwarn:0   dfail:0   fail:0   skip:39  time:457s
fi-elk-e7500     total:224  pass:169  dwarn:9   dfail:0   fail:0   skip:45 
fi-gdg-551       total:288  pass:179  dwarn:0   dfail:0   fail:1   skip:108 time:280s
fi-glk-1         total:288  pass:260  dwarn:0   dfail:0   fail:0   skip:28  time:515s
fi-hsw-4770      total:288  pass:261  dwarn:0   dfail:0   fail:0   skip:27  time:396s
fi-hsw-4770r     total:288  pass:261  dwarn:0   dfail:0   fail:0   skip:27  time:401s
fi-ilk-650       total:288  pass:228  dwarn:0   dfail:0   fail:0   skip:60  time:414s
fi-ivb-3520m     total:288  pass:259  dwarn:0   dfail:0   fail:0   skip:29  time:454s
fi-ivb-3770      total:288  pass:255  dwarn:0   dfail:0   fail:0   skip:33  time:416s
fi-kbl-7500u     total:288  pass:263  dwarn:1   dfail:0   fail:0   skip:24  time:462s
fi-kbl-7560u     total:288  pass:269  dwarn:0   dfail:0   fail:0   skip:19  time:497s
fi-kbl-7567u     total:288  pass:268  dwarn:0   dfail:0   fail:0   skip:20  time:455s
fi-kbl-r         total:288  pass:260  dwarn:1   dfail:0   fail:0   skip:27  time:504s
fi-pnv-d510      total:288  pass:222  dwarn:1   dfail:0   fail:0   skip:65  time:578s
fi-skl-6260u     total:288  pass:268  dwarn:0   dfail:0   fail:0   skip:20  time:430s
fi-skl-6600u     total:288  pass:261  dwarn:0   dfail:0   fail:0   skip:27  time:507s
fi-skl-6700hq    total:288  pass:262  dwarn:0   dfail:0   fail:0   skip:26  time:529s
fi-skl-6700k2    total:288  pass:264  dwarn:0   dfail:0   fail:0   skip:24  time:487s
fi-skl-6770hq    total:288  pass:268  dwarn:0   dfail:0   fail:0   skip:20  time:482s
fi-skl-gvtdvm    total:288  pass:265  dwarn:0   dfail:0   fail:0   skip:23  time:435s
fi-snb-2520m     total:288  pass:248  dwarn:0   dfail:0   fail:0   skip:40  time:520s
fi-snb-2600      total:288  pass:248  dwarn:0   dfail:0   fail:0   skip:40  time:404s
Blacklisted hosts:
fi-cfl-s2        total:288  pass:262  dwarn:0   dfail:0   fail:0   skip:26  time:572s
fi-glk-dsi       total:288  pass:258  dwarn:0   dfail:0   fail:0   skip:30  time:472s

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_781/issues.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ Fi.CI.IGT: failure for series starting with [1/4] meson: Build cnl_compute_wrpll
  2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
                   ` (4 preceding siblings ...)
  2018-01-16 12:42 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork
@ 2018-01-16 14:12 ` Patchwork
  5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2018-01-16 14:12 UTC (permalink / raw)
  To: Petri Latvala; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/4] meson: Build cnl_compute_wrpll
URL   : https://patchwork.freedesktop.org/series/36525/
State : failure

== Summary ==

Test perf:
        Subgroup polling:
                fail       -> PASS       (shard-hsw) fdo#102252
Test kms_flip:
        Subgroup flip-vs-fences-interruptible:
                dmesg-warn -> PASS       (shard-hsw) fdo#102614 +1
Test kms_rotation_crc:
        Subgroup sprite-rotation-180-flip:
                pass       -> SKIP       (shard-snb)
Test kms_draw_crc:
        Subgroup draw-method-xrgb8888-mmap-cpu-untiled:
                pass       -> SKIP       (shard-snb)
Test gem_tiled_swapping:
        Subgroup non-threaded:
                incomplete -> PASS       (shard-snb) fdo#104218
Test drv_selftest:
        Subgroup mock_fence:
                pass       -> DMESG-FAIL (shard-hsw)

fdo#102252 https://bugs.freedesktop.org/show_bug.cgi?id=102252
fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614
fdo#104218 https://bugs.freedesktop.org/show_bug.cgi?id=104218

shard-hsw        total:2686 pass:1521 dwarn:1   dfail:1   fail:10  skip:1152 time:8771s
shard-snb        total:2729 pass:1316 dwarn:1   dfail:0   fail:11  skip:1401 time:7958s
Blacklisted hosts:
shard-apl        total:2729 pass:1698 dwarn:1   dfail:0   fail:24  skip:1006 time:13656s

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_781/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools
  2018-01-16 11:13 ` [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools Petri Latvala
@ 2018-01-17  9:30   ` Jani Nikula
  0 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2018-01-17  9:30 UTC (permalink / raw)
  To: Petri Latvala, igt-dev; +Cc: intel-gfx

On Tue, 16 Jan 2018, Petri Latvala <petri.latvala@intel.com> wrote:
> Eventually we're switching the official name to "IGT GPU Tools"

*shudder* at that tongue twister... :p

-- 
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2018-01-17  9:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-16 11:13 [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Petri Latvala
2018-01-16 11:13 ` [PATCH i-g-t 2/4] meson: Add quotes in man/rst2man.sh Petri Latvala
2018-01-16 11:13 ` [PATCH i-g-t 3/4] meson: Add quotes in assembler/test/run-test.sh Petri Latvala
2018-01-16 11:13 ` [PATCH i-g-t 4/4] meson: Name the project intel-gpu-tools Petri Latvala
2018-01-17  9:30   ` [igt-dev] " Jani Nikula
2018-01-16 12:35 ` [PATCH i-g-t 1/4] meson: Build cnl_compute_wrpll Arkadiusz Hiler
2018-01-16 12:42 ` ✓ Fi.CI.BAT: success for series starting with [1/4] " Patchwork
2018-01-16 14:12 ` ✗ Fi.CI.IGT: failure " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox