Update reference output of tests

Due to recent changes, lots of tests generated a slightly different
error output.

- bank-noexist : This test doesn't generate any error output now as
  unknown labels are left for the linker to resolve.

- null-in-macro : This test used to crash. Now, the parser verifies that
  a MACRO ends in ENDM, generating an error message if not.

Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
AntonioND
2017-04-02 17:17:41 +01:00
parent 43fd1ee024
commit f63339472e
6 changed files with 7 additions and 6 deletions

View File

@@ -1,2 +0,0 @@
ERROR: bank-noexist.asm(2) :
'noexist' not defined

View File

@@ -1,2 +1,2 @@
ERROR: divzero-instr.asm(2) : ERROR: divzero-instr.asm(2):
division by zero division by zero

View File

@@ -1,2 +1,2 @@
ERROR: divzero-section-bank.asm(1) : ERROR: divzero-section-bank.asm(1):
division by zero division by zero

View File

@@ -1,2 +1,2 @@
ERROR: macro-@.asm(1) -> @(-1) : ERROR: macro-@.asm(1) -> @(-1):
Macro '@' not defined Macro '@' not defined

View File

@@ -0,0 +1,2 @@
ERROR: null-in-macro.asm(1):
Unterminated MACRO definition

View File

@@ -1,2 +1,3 @@
ERROR: undefined-dot.asm(3) : ERROR: undefined-dot.asm(3):
'.' not defined '.' not defined
../../rgbasm: Assembly aborted in pass 2 (1 errors)!