From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: network@lists.ipfire.org Subject: Re: [PATCH 1/7] nitsi: Create "nitsi" Makefile target Date: Fri, 15 Jun 2018 12:28:20 +0100 Message-ID: In-Reply-To: <1528976668.2882.0@mail01.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2408105936168606620==" List-Id: --===============2408105936168606620== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Please send text-only emails. The HTML part messes up patchwork. Best, -Michael On Thu, 2018-06-14 at 13:44 +0200, Jonatan Schlag wrote: > Reviewed-by: Jonatan Schlag >=20 > Am Mo, 4. Jun, 2018 um 5:38 schrieb Michael Tremer > : > > Calling "make nitsi" will run all nitsi tests > >=20 > > Signed-off-by: Michael Tremer > > --- > > Makefile.am | 22 ++++++++++++++++++++++ > > configure.ac | 1 + > > 2 files changed, 23 insertions(+) > >=20 > > diff --git a/Makefile.am b/Makefile.am > > index 7a755cc264a1..c02376462cf4 100644 > > --- a/Makefile.am > > +++ b/Makefile.am > > @@ -89,6 +89,10 @@ INSTALL_EXEC_HOOKS +=3D \ > > =20 > > # ----------------------------------------------------------------------- > > ------- > > =20 > > +AM_V_NITSI =3D $(AM_V_NITSI_$(V)) > > +AM_V_NITSI_ =3D $(AM_V_NITSI_$(AM_DEFAULT_VERBOSITY)) > > +AM_V_NITSI_0 =3D @echo " NITSI " $@; > > + > > AM_V_XSLT =3D $(AM_V_XSLT_$(V)) > > AM_V_XSLT_ =3D $(AM_V_XSLT_$(AM_DEFAULT_VERBOSITY)) > > AM_V_XSLT_0 =3D @echo " XSLT " $@; > > @@ -543,3 +547,21 @@ TESTS =3D \ > > test/functions/ip/ip_prefix_is_valid \ > > test/functions/ip/ip_protocol_is_supported \ > > test/functions/ip/ip_split_prefix > > + > > +# - NITSI tests --------------------------------------------------------- > > ------- > > + > > +NITSI_TESTS =3D \ > > + test/nitsi/test/hello-world > > + > > +EXTRA_DIST +=3D \ > > + test/nitsi/test/hello-world/recipe \ > > + test/nitsi/test/hello-world/settings > > + > > +NITSI_ENVIRONMENT =3D > > + > > +.PHONY: $(NITSI_TESTS) > > +$(NITSI_TESTS): > > + $(AM_V_NITSI) $(NITSI_ENVIRONMENT) $(NITSI) --log-level error -d $@ > > + > > +.PHONY: nitsi > > +nitsi: $(NITSI_TESTS) > > diff --git a/configure.ac b/configure.ac > > index 7cb5ef1110fa..515941451aba 100644 > > --- a/configure.ac > > +++ b/configure.ac > > @@ -50,6 +50,7 @@ AC_PROG_LN_S > > AC_PROG_MKDIR_P > > AC_PROG_SED > > =20 > > +AC_PATH_PROG([NITSI], [nitsi]) > > AC_PATH_PROG([XSLTPROC], [xsltproc]) > > =20 > > # pkg-config > > --=20 > > 2.17.0 > >=20 --===============2408105936168606620==--