Skip to content

Commit b08e6c5

Browse files
authored
Merge pull request #749 from boriel-basic/feat/move_preproc_test_to_folder
refact: move asm tests into its own folder
2 parents d55eceb + de46b58 commit b08e6c5

File tree

159 files changed

+40
-158
lines changed

Some content is hidden

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

159 files changed

+40
-158
lines changed

tests/functional/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ prepro:
1515
./test.py *.bi
1616

1717
asm:
18-
./test.py *.asm
18+
./test.py asm/*.asm
1919

2020
# This includes all .bas BASIC programs having a corresponding .asm
2121
bas:
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
;; ALign test
22
align 256
33
db 1
4-
align 32
4+
align 32
55
db 2
66
align 3
77
db 3
8-
File renamed without changes.

tests/functional/align2.asm renamed to tests/functional/asm/align2.asm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ LABEL1:
77
db 1
88
ALIGN 4
99
db 2
10-
File renamed without changes.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11

22
align 0
33
nop
4-
File renamed without changes.

tests/functional/asm_lb_ix_rb.asm renamed to tests/functional/asm/asm_lb_ix_rb.asm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ LD [ix + 0], a
44

55
LD a, [iy + 0]
66
LD [iy + 0], a
7-

tests/functional/asm_wrong_opcode.asm renamed to tests/functional/asm/asm_wrong_opcode.asm

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
ld d, [.c]
33

44
.c:
5-

0 commit comments

Comments
 (0)