mirror of
https://github.com/cc65/cc65.git
synced 2025-01-08 20:31:31 +00:00
More .assert testcases
Add testcases with error generation.
This commit is contained in:
parent
2040da0520
commit
7476c86ba9
@ -1,8 +1,3 @@
|
||||
; 2022-06-18 Spiro Trikaliotis
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $0000, error, "Code not at $0000"
|
||||
.assert * = $0001, error, "Code not at $0001"
|
||||
.assert * = $1000, error, "Code not at $1000"
|
||||
.assert * = $1001, error, "Code not at $1001"
|
||||
.assert * = $8000, error, "Code not at $8000"
|
||||
.assert * = $8001, error, "Code not at $8001"
|
||||
|
3
test/asm/listing/032-assert-error4.s
Normal file
3
test/asm/listing/032-assert-error4.s
Normal file
@ -0,0 +1,3 @@
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $0001, error, "Code not at $0001"
|
3
test/asm/listing/032-assert-error5.s
Normal file
3
test/asm/listing/032-assert-error5.s
Normal file
@ -0,0 +1,3 @@
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $1000, error, "Code not at $1000"
|
3
test/asm/listing/032-assert-error6.s
Normal file
3
test/asm/listing/032-assert-error6.s
Normal file
@ -0,0 +1,3 @@
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $1001, error, "Code not at $1001"
|
3
test/asm/listing/032-assert-error7.s
Normal file
3
test/asm/listing/032-assert-error7.s
Normal file
@ -0,0 +1,3 @@
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $8000, error, "Code not at $8000"
|
3
test/asm/listing/032-assert-error8.s
Normal file
3
test/asm/listing/032-assert-error8.s
Normal file
@ -0,0 +1,3 @@
|
||||
; 2022-06-20 Spiro Trikaliotis
|
||||
|
||||
.assert * = $8001, error, "Code not at $8001"
|
0
test/asm/listing/control/032-assert-error4.err
Normal file
0
test/asm/listing/control/032-assert-error4.err
Normal file
0
test/asm/listing/control/032-assert-error6.err
Normal file
0
test/asm/listing/control/032-assert-error6.err
Normal file
0
test/asm/listing/control/032-assert-error7.err
Normal file
0
test/asm/listing/control/032-assert-error7.err
Normal file
0
test/asm/listing/control/032-assert-error8.err
Normal file
0
test/asm/listing/control/032-assert-error8.err
Normal file
1
test/asm/listing/ref/032-assert-error4.ld65err-ref
Normal file
1
test/asm/listing/ref/032-assert-error4.ld65err-ref
Normal file
@ -0,0 +1 @@
|
||||
ld65: Error: 032-assert-error4.s:3: Code not at $0001
|
0
test/asm/listing/ref/032-assert-error5.ld65err-ref
Normal file
0
test/asm/listing/ref/032-assert-error5.ld65err-ref
Normal file
1
test/asm/listing/ref/032-assert-error6.ld65err-ref
Normal file
1
test/asm/listing/ref/032-assert-error6.ld65err-ref
Normal file
@ -0,0 +1 @@
|
||||
ld65: Error: 032-assert-error6.s:3: Code not at $1001
|
1
test/asm/listing/ref/032-assert-error7.ld65err-ref
Normal file
1
test/asm/listing/ref/032-assert-error7.ld65err-ref
Normal file
@ -0,0 +1 @@
|
||||
ld65: Error: 032-assert-error7.s:3: Code not at $8000
|
1
test/asm/listing/ref/032-assert-error8.ld65err-ref
Normal file
1
test/asm/listing/ref/032-assert-error8.ld65err-ref
Normal file
@ -0,0 +1 @@
|
||||
ld65: Error: 032-assert-error8.s:3: Code not at $8001
|
Loading…
Reference in New Issue
Block a user