From 66561c713ed8cdfa7a384eb0ba2c7a211ab5ba1c Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 2 Jun 2021 16:14:58 +0200 Subject: [PATCH] libgpiod: redirect stdout from the ptest executable to a file Most tests redirect their standard output to a file. Let's make libgpiod consistent with this pattern. Signed-off-by: Bartosz Golaszewski Signed-off-by: Khem Raj --- meta-oe/recipes-support/libgpiod/files/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/libgpiod/files/run-ptest b/meta-oe/recipes-support/libgpiod/files/run-ptest index 4cda05d446..3ad737dfc8 100644 --- a/meta-oe/recipes-support/libgpiod/files/run-ptest +++ b/meta-oe/recipes-support/libgpiod/files/run-ptest @@ -4,7 +4,7 @@ testbin="gpiod-test" ptestdir=$(dirname "$(readlink -f "$0")") cd $ptestdir/tests -./$testbin +./$testbin > ./$testbin.out if [ $? -ne 0 ]; then echo "FAIL: $testbin" else