From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:01:01
|
Commit-ID: 8e2999b41bbcaff3b85ab2b36818889b7edfa4dc Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=8e2999b41bbcaff3b85ab2b36818889b7edfa4dc Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 22:19:28 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Add invlpga test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- travis/test/invlpga.asm | 8 ++++++++ travis/test/invlpga.bin.t | 1 + travis/test/invlpga.json | 12 ++++++++++++ 3 files changed, 21 insertions(+) diff --git a/travis/test/invlpga.asm b/travis/test/invlpga.asm new file mode 100644 index 0000000..ae68310 --- /dev/null +++ b/travis/test/invlpga.asm @@ -0,0 +1,8 @@ + bits 32 + invlpga + invlpga ax,ecx + invlpga eax,ecx + bits 64 + invlpga + invlpga eax,ecx + invlpga rax,ecx diff --git a/travis/test/invlpga.bin.t b/travis/test/invlpga.bin.t new file mode 100644 index 0000000..9e0d3d5 --- /dev/null +++ b/travis/test/invlpga.bin.t @@ -0,0 +1 @@ +gg \ No newline at end of file diff --git a/travis/test/invlpga.json b/travis/test/invlpga.json new file mode 100644 index 0000000..50d57be --- /dev/null +++ b/travis/test/invlpga.json @@ -0,0 +1,12 @@ +[ + { + "description": "Test invlpga instruction", + "id": "invlpga", + "format": "bin", + "source": "invlpga.asm", + "option": "-Ox", + "target": [ + { "output": "invlpga.bin" } + ] + } +] |