Skip to content

Commit 9f2ac65

Browse files
authored
Merge pull request #564 from boriel/feature/segregate_test_by_arch
test: make tests per arch
2 parents 33bc700 + a3b0b64 commit 9f2ac65

1,646 files changed

Lines changed: 339 additions & 1304 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tests/functional/Makefile

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
all: test test_
55

66
diffbas:
7-
./test.py -d *.bas
7+
./test.py -d '**/*.bas'
88

9-
test: prepro bin asm bas
9+
test: prepro bin asm bas
1010

1111
test_:
1212
pytest . -k 'test_errmsg or test_cmdline'
13-
# ./test_.py
1413

1514
prepro:
1615
./test.py *.bi
@@ -20,24 +19,23 @@ asm:
2019

2120
# This includes all .bas BASIC programs having a corresponding .asm
2221
bas:
23-
./test.py *.bas
22+
./test.py '**/*.bas'
2423

2524
# This only includes all .bas BASIC programs having a
2625
# corresponding .asm which starts by a digit.
2726
basic_tests:
28-
./test.py [0-9]*.bas
27+
./test.py '**/[0-9]*.bas'
2928

3029
bin:
31-
./test.py tzx_*.bas tap_*.bas
30+
./test.py '**/tzx_*.bas' '**/tap_*.bas'
3231

3332
# Measures coverage using only basic tests
3433
.PHONY: basic_coverage
3534
basic_coverage:
3635
./coverage.sh [0-9]*.bas
3736
coverage html -d basic_coverage
38-
37+
3938
.PHONY: coverage
4039
coverage:
4140
./coverage.sh *.bas
4241
coverage html -d coverage
43-

tests/functional/dimconst7.bas

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)