From 6c77d5c7cd1ddfd35fe5932e91c09881ac49d79b Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 26 Mar 2020 23:26:18 -0500 Subject: [PATCH] travis: Use grep with --text on qemu-arm output. If the .out file contains non-text characters, grep won't show the output unless we ask nicely. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d43bca9402..c1659f856b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,7 +75,7 @@ jobs: - make ${MAKEOPTS} -C mpy-cross - make ${MAKEOPTS} -C ports/qemu-arm -f Makefile.test test after_failure: - - grep "FAIL" ports/qemu-arm/build/console.out + - grep --text "FAIL" ports/qemu-arm/build/console.out # unix coverage - stage: test