diff options
author | Demi M. Obenour <demiobenour@gmail.com> | 2020-12-28 18:35:29 -0500 |
---|---|---|
committer | Demi M. Obenour <demiobenour@gmail.com> | 2020-12-28 18:35:29 -0500 |
commit | cfd62644ec2dda4968ac65751f162932fc46761f (patch) | |
tree | f8eac73ad2bf93d1d74c40f4ac41a5be6ee4456f | |
parent | 46c8c73ae19b42928043a254688b2985320f5ceb (diff) |
Be compatible with Bash
On many distributions, /bin/sh is Bash. Bash’s `echo` builtin doesn’t
interpret escape sequences, so most tests fail. Fix this by removing
the escape sequence.
-rw-r--r-- | test/integration/framework | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/framework b/test/integration/framework index 20173da23..3973ad863 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -504,7 +504,7 @@ EOF unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy # Make dpkg inherit testing path - echo 'DPkg::Path "";\n' >> aptconfig.conf + echo 'DPkg::Path "";' >> aptconfig.conf # Make gcov shut up export GCOV_ERROR_FILE=/dev/null |