Blame | Last modification | View Log | Download
# file opened: assert.asm1 0000 ASSERT 1 ; no errorassert.asm(2): error: [ASSERT] Assertion failed: 02 0000 ASSERT 0 ; regular classic assert-triggered errorassert.asm(3): error: [ASSERT] Syntax error: @3 0000 ASSERT @ ; syntax error4 00005 0000 ; v1.18.1 extended assert with second argument6 0000 ASSERT 1, should pass without errorassert.asm(7): error: [ASSERT] Assertion failed: 0, should fail and make this second text visible in error line7 0000 ASSERT 0, should fail and make this second text visible in error lineassert.asm(8): error: [ASSERT] Syntax error: @, should still fail on syntax8 0000 ASSERT @, should still fail on syntaxassert.asm(9): error: [ASSERT] Syntax error: , another syntax fail (workaround for non-existing "ERROR something" directive)9 0000 ASSERT , another syntax fail (workaround for non-existing "ERROR something" directive)10 0000# file closed: assert.asmValue Label------ - -----------------------------------------------------------