From: Phil Burk Date: Mon, 29 Nov 2021 01:01:37 +0000 (-0700) Subject: test: show test output (#104) X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e534c06520fc833641a0287e39b47c1c8f2350d5;p=debian%2Fpforth test: show test output (#104) Also test t_locals.fth and t_alloc.fth --- 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