All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Jordan Justen <jordan.l.justen@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH i-g-t 01/12] meson: Install tests into $libexecdir
Date: Thu, 14 Sep 2017 22:00:37 +0300	[thread overview]
Message-ID: <20170914190037.GD4914@intel.com> (raw)
In-Reply-To: <150541225435.24775.13382456540268369239@jljusten-skl>

On Thu, Sep 14, 2017 at 11:04:14AM -0700, Jordan Justen wrote:
> On 2017-09-11 10:24:56, Ville Syrjala wrote:
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > 
> > autotools installs the tests into $libexecdir. Make meson do the same.
> > 
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> >  tests/meson.build | 10 ++++++++--
> >  1 file changed, 8 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/meson.build b/tests/meson.build
> > index 4dd5a9c9d4c7..1f98f2a02bb9 100644
> > --- a/tests/meson.build
> > +++ b/tests/meson.build
> > @@ -255,13 +255,19 @@ if alsa.found() and gsl.found()
> >         test_deps += alsa
> >  endif
> >  
> > +libexecdir = join_paths(get_option('prefix'), get_option('libexecdir'), 'intel-gpu-tools')
> > +
> >  foreach prog : test_progs
> >         executable(prog, prog + '.c',
> > -                       dependencies : test_deps)
> > +                  dependencies : test_deps,
> > +                  install_dir : libexecdir,
> > +                  install : true)
> >  endforeach
> >  
> >  executable('testdisplay', ['testdisplay.c', 'testdisplay_hotplug.c'],
> > -               dependencies : test_deps)
> > +           dependencies : test_deps,
> > +          install_dir : libexecdir,
> > +          install : true)
> 
> I noticed indentation alignment issues, like this one, in many of the
> patches. (Often when adding 'install : true')
> 
> Can you review and fix the alignment on all patches?

Looks like there's something fishy going on with emacs meson-mode. It
uses spaces to indent one line and for other lines it uses tabs.

Hmm. OK, so it looks like if there's already 8 spaces on the line it
won't convert them to tabs when I ask it reindent things. That's a bit
strange. I'll go through the rest of the patches and try to fix that
up.

> 
> Series Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>

Thanks.

> 
> >  test_progs += 'testdisplay'
> >  
> >  run_command('generate_testlist.sh', test_progs)
> > -- 
> > 2.13.5
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2017-09-14 19:00 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-11 17:24 [PATCH i-g-t 00/12] meson: Build more tools and install more stuff Ville Syrjala
2017-09-11 17:24 ` [PATCH i-g-t 01/12] meson: Install tests into $libexecdir Ville Syrjala
2017-09-14 18:04   ` Jordan Justen
2017-09-14 19:00     ` Ville Syrjälä [this message]
2017-09-11 17:24 ` [PATCH i-g-t 02/12] meson: Install tools Ville Syrjala
2017-09-11 17:24 ` [PATCH i-g-t 03/12] tools/intel_reg: s/PKGDATADIR/IGT_DATADIR/ Ville Syrjala
2017-09-11 17:24 ` [PATCH i-g-t 04/12] meson: Build and install intel_reg Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 05/12] meson: Install intel_reg register definitions Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 06/12] meson: Install test-list.txt Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 07/12] meson: Install test image files Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 08/12] meson: Build and install intel_l3_parity Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 09/12] meson: Build and install intel_dp_compliance Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 10/12] meson: Drop the 'lib' prefix from intel_aubdump.so Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 11/12] meson: Rename and install intel-gpu-overlay Ville Syrjala
2017-09-11 17:25 ` [PATCH i-g-t 12/12] meson: Install intel_gpu_abrt Ville Syrjala
2017-09-11 18:11 ` ✓ Fi.CI.BAT: success for meson: Build more tools and install more stuff Patchwork
2017-09-11 22:01 ` ✗ Fi.CI.IGT: failure " Patchwork

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=20170914190037.GD4914@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jordan.l.justen@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.