Skip to content

Commit 203c722

Browse files
committed
CI: huge linux builds should also run syntax & indent tests
closes: #15960 Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 20e045f commit 203c722

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
normal)
172172
;;
173173
huge)
174-
echo "TEST=scripttests test_libvterm"
174+
echo "TEST=scripttests test_libvterm indenttest syntaxtest"
175175
INTERFACE=${{ matrix.interface || 'yes' }}
176176
if ${{ matrix.python3 == 'stable-abi' }}; then
177177
PYTHON3_CONFOPT="--with-python3-stable-abi=3.8"
@@ -268,7 +268,7 @@ jobs:
268268
- name: Test
269269
timeout-minutes: 25
270270
run: |
271-
do_test() { sg audio "sg $(id -gn) '$*'"; }
271+
do_test() { echo "$*"; sg audio "sg $(id -gn) '$*'"; }
272272
do_test make ${SHADOWOPT} ${TEST}
273273
274274
- if: ${{ !cancelled() }}

runtime/indent/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ VIMRUNTIME = ..
1111
# If a test fails a testdir/*.fail file will be written.
1212
test:
1313
VIMRUNTIME=$(VIMRUNTIME) $(VIMPROG) --clean --not-a-term -u testdir/runtest.vim
14+
@echo "INDENT TESTS: DONE"
1415

1516

1617
clean testclean:

runtime/syntax/testdir/runtest.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ func RunTest()
431431
call Message('View generated screendumps with "../../src/vim --clean -S testdir/viewdumps.vim"')
432432
endif
433433

434-
call AppendMessages('== SUMMARY ==')
434+
call AppendMessages('== SUMMARY SYNTAX TESTS ==')
435435

436436
if len(failed_tests) > 0
437437
" have make report an error

0 commit comments

Comments
 (0)