search for: testquot

Displaying 6 results from an estimated 6 matches for "testquot".

Did you mean: testquota
2014 Sep 04
2
Autotools help needed
...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../ TESTS = testquoting And it does not work (snippet of make check output): gcc -std=gnu99 -std=gnu99 -g -O2 testquoting.c -o testquoting In file included from testquoting.c:4:0: fish.c:19:20: fatal error: config.h: No such file or directory #include <config...
2014 Oct 31
0
[PATCH 2/3] fish: basic tests for readline escaping
From: Maros Zatko <mzatko@redhat.com> --- fish/test/Makefile.am | 39 ++++++++++++++++ fish/test/testquoting.c | 120 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 159 insertions(+) create mode 100644 fish/test/Makefile.am create mode 100644 fish/test/testquoting.c diff --git a/fish/test/Makefile.am b/fish/test/Makefile.am new file mode 100644 index 0000000..d108083 --- /dev/null...
2014 Nov 07
3
[PATCH 0/3] v2 readline escaping functions
...sic tests for readline escaping autotools: add fish/test Makefile.am | 1 + configure.ac | 1 + fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++ fish/rl.h | 24 ++++++++ fish/test/Makefile.am | 34 +++++++++++ fish/test/testquoting.c | 93 ++++++++++++++++++++++++++++ 6 files changed, 311 insertions(+) create mode 100644 fish/rl.c create mode 100644 fish/rl.h create mode 100644 fish/test/Makefile.am create mode 100644 fish/test/testquoting.c -- 1.9.3
2014 Oct 31
6
[PATCH 0/3] WIP readline escaping functions
...tests for readline escaping autotools: add fish/test Makefile.am | 1 + configure.ac | 1 + fish/rl.c | 158 ++++++++++++++++++++++++++++++++++++++++++++++++ fish/rl.h | 32 ++++++++++ fish/test/Makefile.am | 39 ++++++++++++ fish/test/testquoting.c | 120 ++++++++++++++++++++++++++++++++++++ 6 files changed, 351 insertions(+) create mode 100644 fish/rl.c create mode 100644 fish/rl.h create mode 100644 fish/test/Makefile.am create mode 100644 fish/test/testquoting.c -- 1.9.3
2014 Nov 13
4
[PATCH 0/4 v3] readline escaping functions
...sic tests for readline escaping autotools: add fish/test Makefile.am | 1 + configure.ac | 1 + fish/rl.c | 157 ++++++++++++++++++++++++++++++++++++++++++++++++ fish/rl.h | 25 ++++++++ fish/test/Makefile.am | 34 +++++++++++ fish/test/testquoting.c | 96 +++++++++++++++++++++++++++++ 6 files changed, 314 insertions(+) create mode 100644 fish/rl.c create mode 100644 fish/rl.h create mode 100644 fish/test/Makefile.am create mode 100644 fish/test/testquoting.c -- 1.9.3
2014 Sep 05
2
Re: Autotools help needed
...ng 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 > 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.