From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:39
|
Commit-ID: 2786f85aed1ee3cb8f73f84ca78c793c645e9237 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=2786f85aed1ee3cb8f73f84ca78c793c645e9237 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 01:29:34 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add movd test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/movd.asm | 1 - travis/test/movd.bin.t | Bin 0 -> 28 bytes travis/test/movd.json | 12 ++++++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/test/movd.asm b/travis/test/movd.asm similarity index 62% copy from test/movd.asm copy to travis/test/movd.asm index 42df0af..c304e6a 100644 --- a/test/movd.asm +++ b/travis/test/movd.asm @@ -1,4 +1,3 @@ -;Testname=optimized; Arguments=-Ox -fbin -omovd.bin; Files=stdout stderr movd.bin [BITS 32] movd mm0,eax movd mm0,[eax] diff --git a/travis/test/movd.bin.t b/travis/test/movd.bin.t new file mode 100644 index 0000000..efcf054 Binary files /dev/null and b/travis/test/movd.bin.t differ diff --git a/travis/test/movd.json b/travis/test/movd.json new file mode 100644 index 0000000..aebe26c --- /dev/null +++ b/travis/test/movd.json @@ -0,0 +1,12 @@ +[ + { + "description": "Test movd instruction", + "id": "movd", + "format": "bin", + "source": "movd.asm", + "option": "-Ox", + "target": [ + { "output": "movd.bin" } + ] + } +] |