From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:41
|
Commit-ID: 76ff7aa4e49e62a0ca17ccb5f2c412f31c6b937d Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=76ff7aa4e49e62a0ca17ccb5f2c412f31c6b937d Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 01:31:24 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add movnti test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/movnti.asm | 3 --- travis/test/movnti.bin.t | 1 + travis/test/movnti.json | 11 +++++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/test/movnti.asm b/travis/test/movnti.asm similarity index 51% copy from test/movnti.asm copy to travis/test/movnti.asm index 920f327..9709cba 100644 --- a/test/movnti.asm +++ b/travis/test/movnti.asm @@ -1,6 +1,3 @@ -;Testname=test; Arguments=-fbin -omovnti.bin; Files=stdout stderr movnti.bin -; BR 2028995 - bits 16 movnti [si],eax bits 32 diff --git a/travis/test/movnti.bin.t b/travis/test/movnti.bin.t new file mode 100644 index 0000000..7db727d --- /dev/null +++ b/travis/test/movnti.bin.t @@ -0,0 +1 @@ +H \ No newline at end of file diff --git a/travis/test/movnti.json b/travis/test/movnti.json new file mode 100644 index 0000000..6ca7899 --- /dev/null +++ b/travis/test/movnti.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test movnti instruction", + "id": "movnti", + "format": "bin", + "source": "movnti.asm", + "target": [ + { "output": "movnti.bin" } + ] + } +] |