From e534c06520fc833641a0287e39b47c1c8f2350d5 Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Sun, 28 Nov 2021 18:01:37 -0700 Subject: [PATCH] test: show test output (#104) Also test t_locals.fth and t_alloc.fth --- .github/workflows/cmake.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 14a0186..fcf9576 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -31,6 +31,8 @@ jobs: - name: Test working-directory: ${{github.workspace}}/fth run: | - ./pforth_standalone t_corex.fth | grep "0 failed" - ./pforth_standalone t_strings.fth | grep "0 failed" + ./pforth_standalone t_corex.fth | tee temp.txt && grep "0 failed" temp.txt + ./pforth_standalone t_strings.fth | tee temp.txt && grep "0 failed" temp.txt + ./pforth_standalone t_locals.fth | tee temp.txt && grep "0 failed" temp.txt + ./pforth_standalone t_alloc.fth | tee temp.txt && grep "PASSED" temp.txt -- 2.39.5