diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-01-10 15:55:27 +0100 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2023-02-27 13:27:57 +0100 |
commit | a16593272c497b60a3cccad7fe5b9c7b2eede11b (patch) | |
tree | 507dc72fd2f55f23a2e634edca3d83fa2d9a4593 /test/end-to-end/remote-execution | |
parent | f9241e0e94b1094b12fc58ad212cdf02d021b992 (diff) | |
download | justbuild-a16593272c497b60a3cccad7fe5b9c7b2eede11b.tar.gz |
Tests: Fix stderr printout bug in just-mr usage
All desired outputs of just-mr (e.g., the config file after a setup call)
are printed to stdout, while all logging messages are printed to stderr.
Therefore, one should avoid explicitly piping stderr to stdout, as this
can break the intended use of just-mr.
Diffstat (limited to 'test/end-to-end/remote-execution')
-rw-r--r-- | test/end-to-end/remote-execution/native-protocol.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/end-to-end/remote-execution/native-protocol.sh b/test/end-to-end/remote-execution/native-protocol.sh index bef83e46..68667dad 100644 --- a/test/end-to-end/remote-execution/native-protocol.sh +++ b/test/end-to-end/remote-execution/native-protocol.sh @@ -67,7 +67,7 @@ cat > TARGETS <<EOF } EOF -readonly CONF="$("${JUST_MR}" -C repos.json --local-build-root="${LBRDIR}" setup 2>&1)" +readonly CONF="$("${JUST_MR}" -C repos.json --local-build-root="${LBRDIR}" setup)" NAME="native" ARGS="" |