mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-17 15:45:32 -05:00
Main: cat test-suite.log files
This commit is contained in:
parent
3c17a725d5
commit
1f7f500538
3 changed files with 13 additions and 6 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
- name: check
|
- name: check
|
||||||
run: make check || (cat test-suite.log && false)
|
run: make check || (./test-suite-log && false)
|
||||||
- name: install
|
- name: install
|
||||||
run: sudo make install
|
run: sudo make install
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ jobs:
|
||||||
- name: make
|
- name: make
|
||||||
run: make
|
run: make
|
||||||
- name: check
|
- name: check
|
||||||
run: make check || (cat test-suite.log && false)
|
run: make check || (./test-suite-log && false)
|
||||||
- name: install
|
- name: install
|
||||||
run: sudo make install
|
run: sudo make install
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ jobs:
|
||||||
run: make
|
run: make
|
||||||
- working-directory: libkernaux-0.3.0
|
- working-directory: libkernaux-0.3.0
|
||||||
name: check
|
name: check
|
||||||
run: make check || (cat test-suite.log && false)
|
run: make check || (./test-suite-log && false)
|
||||||
- working-directory: libkernaux-0.3.0
|
- working-directory: libkernaux-0.3.0
|
||||||
name: install
|
name: install
|
||||||
run: sudo make install
|
run: sudo make install
|
||||||
|
|
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -87,12 +87,13 @@
|
||||||
/config.status
|
/config.status
|
||||||
/libtool
|
/libtool
|
||||||
/stamp-h1
|
/stamp-h1
|
||||||
/test-suite.log
|
|
||||||
|
|
||||||
|
/examples/test-suite.log
|
||||||
/examples/*.log
|
/examples/*.log
|
||||||
/examples/*.trs
|
/examples/*.trs
|
||||||
/tests/test*.log
|
/tests/test-suite.log
|
||||||
/tests/test*.trs
|
/tests/test_*.log
|
||||||
|
/tests/test_*.trs
|
||||||
|
|
||||||
# Custom
|
# Custom
|
||||||
|
|
||||||
|
|
6
test-suite-log
Executable file
6
test-suite-log
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
|
test -f examples/test-suite.log && cat examples/test-suite.log
|
||||||
|
test -f tests/test-suite.log && cat tests/test-suite.log
|
Loading…
Add table
Reference in a new issue