diff options
| author | Dan Willemsen <dwillemsen@google.com> | 2020-06-11 20:00:16 -0700 |
|---|---|---|
| committer | Dan Willemsen <dwillemsen@google.com> | 2020-06-11 21:20:36 -0700 |
| commit | d34e18c39a3695b9c620e1b4ed509174784fee38 (patch) | |
| tree | 45f5c42abc2e827d706d77ca3b430e881f9a836e | |
| parent | cde81af423951d85f0b145c473b706f72609c74e (diff) | |
| download | platform_build_kati-d34e18c39a3695b9c620e1b4ed509174784fee38.tar.gz platform_build_kati-d34e18c39a3695b9c620e1b4ed509174784fee38.tar.bz2 platform_build_kati-d34e18c39a3695b9c620e1b4ed509174784fee38.zip | |
Disable multiline_arg.mk for ninja tests
The behavior of:
bash -c 'echo \'
Differs between 16.04 (bash 4.3.48: '') and 18.04 (bash 4.4.19: '\').
Kati is translating this line to `bash -c "... && (echo )"` so it's only
ever matching the 16.04 version. The non-ninja implementation follows
make's behavior.
Change-Id: I5173a034524f20e23b191338750c4cb198db90bb
| -rw-r--r-- | testcase/multiline_arg.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testcase/multiline_arg.mk b/testcase/multiline_arg.mk index 1e64318..0bfdf01 100644 --- a/testcase/multiline_arg.mk +++ b/testcase/multiline_arg.mk @@ -1,3 +1,5 @@ +# TODO(c-ninja): We're exporting `(echo )` for the last line, while make a kati(w/o ninja) uses `echo \` + SHELL:=/bin/bash define func |
