Displaying 6 results from an estimated 6 matches for "testquoting_cppflag".
Did you mean:
testquoting_cppflags
2014 Sep 05
2
Re: Autotools help needed
...st-quoting.c originally, but dash seems to make troubles as well).
>> I came up with this (snippet from Makefile.am):
>>
>> bin_TESTS = testquoting
> IIRC this isn't needed if your test is already added to TESTS.
Indeed
>
>> testquoting_CFLAGS = -I../
> Try with testquoting_CPPFLAGS.
Tried, it does cut it either.
2014 Sep 04
2
Autotools help needed
Hi folks!
I'm trying to convince autotools to allow me to include fish.c in a C
file containing a bunch of unit tests. In order to do that I need to
convince it add include path (-I../) to gcc for that particular file
(test-quoting.c originally, but dash seems to make troubles as well).
I came up with this (snippet from Makefile.am):
bin_TESTS = testquoting
testquoting_CFLAGS = -I../
2014 Nov 07
3
[PATCH 0/3] v2 readline escaping functions
From: Maros Zatko <mzatko@redhat.com>
Helper functions for future support of backslash escaped spaces in filenames.
There are a few tests too. Changed according to review remarks.
Maros Zatko (3):
fish: rl.{c, h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: add fish/test
Makefile.am | 1 +
configure.ac | 1 +
2014 Oct 31
0
[PATCH 2/3] fish: basic tests for readline escaping
...License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+include $(top_srcdir)/subdir-rules.mk
+
+check_PROGRAMS = testquoting
+
+testquoting_SOURCES = \
+ testquoting.c \
+ $(top_srcdir)/fish/rl.c
+
+testquoting_CPPFLAGS = \
+ -I$(top_srcdir)/src -I$(top_builddir)/src \
+ -I$(top_srcdir)/fish -I$(top_builddir)/fish \
+ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+
+#testquoting_LDADD = $(top_builddir)/fish/rl.o
+
+
+TESTS_ENVIRONMENT = $(top_builddir)/run --test
+
+TESTS = \
+ testquoting
+
+# testquot...
2014 Nov 13
4
[PATCH 0/4 v3] readline escaping functions
Helper functions for future support of backslash escaped spaces in filenames.
There are a few tests too. Changed according to review remarks and fixed few
other mistakes.
Maros Zatko (4):
fish: copy parse_quoted_string and hexdigit from fish.h to rl.c
fish: rl.{c,h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: add fish/test
Makefile.am
2014 Oct 31
6
[PATCH 0/3] WIP readline escaping functions
From: Maros Zatko <hacxman@gmail.com>
Auxiliary functions for readline to support space character escaping
in filenames in future.
Escaping function is taken from fish.c (used to be parse_quoted_string)
plus its un-escaping counterpart. There are a few tests for both.
Maros Zatko (3):
fish: rl.{c,h} - escaping functions for readline
fish: basic tests for readline escaping
autotools: