; Reduce quoting for SELECTOR in 'make -C test' (Bug#31744)
commit5bdc344780faabbc91b7e55306b2071dffb44fa2
authorNoam Postavsky <npostavs@gmail.com>
Thu, 7 Jun 2018 01:25:52 +0000 (6 21:25 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Tue, 12 Jun 2018 11:26:06 +0000 (12 07:26 -0400)
tree675856e8329dbd3bb77afd86e166869bbbcc7ce6
parentb6b793bd77cb8be0a2d2745262e53037dc6798a0
; Reduce quoting for SELECTOR in 'make -C test' (Bug#31744)

Before:

    make -C test SELECTOR='\"foo\"'
    make -C test SELECTOR='(quote (tag :some-tag))'

After:

    make -C test SELECTOR='"foo"'
    make -C test SELECTOR='(tag :some-tag)'

* test/Makefile.in: Use single quotes around the command line call to
ert, this means the user doesn't have to backslash escape double
quotes when writing lisp strings for the selector.  Also wrap the
SELECTOR value in (quote ...) so the user won't have to type it
in (and not get tempted to use the '... reader syntax form which would
now fail to work due to using single quotes around the whole shell
arg).
* test/README: Update instructions accordingly.
test/Makefile.in
test/README