From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:55
|
Commit-ID: 4f5b5a2c2e980fa642966635ee82de20da2b94c6 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=4f5b5a2c2e980fa642966635ee82de20da2b94c6 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 20:05:33 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Add jmp64 test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/jmp64.asm | 2 -- travis/test/jmp64.bin.t | 1 + travis/test/jmp64.json | 11 +++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/test/jmp64.asm b/travis/test/jmp64.asm similarity index 78% copy from test/jmp64.asm copy to travis/test/jmp64.asm index 616b0e6..d5900f4 100644 --- a/test/jmp64.asm +++ b/travis/test/jmp64.asm @@ -1,5 +1,3 @@ -;Testname=test; Arguments=-fbin -ojmp64.bin; Files=stdout stderr jmp64.bin - bits 64 jmp rcx jmp [rax] diff --git a/travis/test/jmp64.bin.t b/travis/test/jmp64.bin.t new file mode 100644 index 0000000..64436c9 --- /dev/null +++ b/travis/test/jmp64.bin.t @@ -0,0 +1 @@ + H((H(HH \ No newline at end of file diff --git a/travis/test/jmp64.json b/travis/test/jmp64.json new file mode 100644 index 0000000..76ce48b --- /dev/null +++ b/travis/test/jmp64.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test jmp in 64 bit mode", + "id": "jmp64", + "format": "bin", + "source": "jmp64.asm", + "target": [ + { "output": "jmp64.bin" } + ] + } +] |