ci: fix tcc, by not running vlib/v/tests/backtrace_test.v there for now

pull/4245/head
Delyan Angelov 2020-04-05 13:01:48 +03:00
parent 75518e5bb9
commit 77fcac027e
2 changed files with 7 additions and 3 deletions

View File

@ -130,7 +130,9 @@ jobs:
- name: v self compilation - name: v self compilation
run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v run: ./v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v
- name: Fixed tests - name: Fixed tests
run: ./v test-fixed run: |
./v vlib/v/tests/backtrace_test.v
./v test-fixed
- name: x64 machine code generation - name: x64 machine code generation
run: | run: |
./v -o vprod -prod cmd/v ./v -o vprod -prod cmd/v
@ -265,7 +267,9 @@ jobs:
echo $VFLAGS echo $VFLAGS
.\make.bat -msvc .\make.bat -msvc
- name: Fixed tests - name: Fixed tests
run: ./v test-fixed run: |
./v vlib/v/tests/backtrace_test.v
./v test-fixed
# - name: Test # - name: Test
# run: | # run: |
# .\v.exe -silent test-compiler # .\v.exe -silent test-compiler

View File

@ -28,7 +28,7 @@ const (
'vlib/v/tests/typeof_simple_types_test.v', 'vlib/v/tests/typeof_simple_types_test.v',
'vlib/v/tests/struct_chained_fields_correct_test.v', 'vlib/v/tests/struct_chained_fields_correct_test.v',
'vlib/v/tests/if_expression_test.v', 'vlib/v/tests/if_expression_test.v',
'vlib/v/tests/backtrace_test.v', // 'vlib/v/tests/backtrace_test.v',
'vlib/v/tests/interfaces_map_test.v', 'vlib/v/tests/interfaces_map_test.v',
'vlib/v/tests/fn_expecting_ref_but_returning_struct_test.v', 'vlib/v/tests/fn_expecting_ref_but_returning_struct_test.v',
'vlib/v/tests/inout/compiler_test.v', 'vlib/v/tests/inout/compiler_test.v',