Message ID | CACvgo53boXjv1Pf2AhpJ3Ro55g92z0-TRz-ihHuLKqVrXFT=_w@mail.gmail.com |
---|---|
State | Deferred |
Headers | show |
Thank you Emil for your feedback, On 05/21/2015 05:58 PM, Emil Velikov wrote: > Hi Arto, > > On 21 May 2015 at 14:18, Arto Merilainen <amerilainen@nvidia.com> wrote: >> This patch adds a simple test for testing Video-Image-Compositor >> engine on Tegra124 SoC. The test case opens a channel and performs >> a surface clear. >> >> Signed-off-by: Arto Merilainen <amerilainen@nvidia.com> >> --- >> tests/tegra/Makefile.am | 3 +- >> tests/tegra/host1x.h | 52 ++++++ >> tests/tegra/submit_vic.c | 315 +++++++++++++++++++++++++++++++++++ >> tests/tegra/vic.h | 426 +++++++++++++++++++++++++++++++++++++++++++++++ >> 4 files changed, 795 insertions(+), 1 deletion(-) >> create mode 100644 tests/tegra/host1x.h >> create mode 100644 tests/tegra/submit_vic.c >> create mode 100644 tests/tegra/vic.h >> > > Please add the two new headers into the noinst_HEADERS list like > below. Otherwise they won''t end up in the tarball, thus the test will > fail to build. I will fix this in the next version. - Arto -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/tests/tegra/Makefile.am b/tests/tegra/Makefile.am index 8e625c8..a771b32 100644 --- a/tests/tegra/Makefile.am +++ b/tests/tegra/Makefile.am @@ -11,3 +11,7 @@ LDADD = \ noinst_PROGRAMS = \ openclose \ submit_vic + +noinst_HEADERS = \ + host1x.h \