From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:39
|
Commit-ID: 0060e40246748d7d04d433081cb5286475141100 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=0060e40246748d7d04d433081cb5286475141100 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 3 Nov 2018 17:51:45 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add andbyte test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/andbyte.asm | 3 --- travis/test/andbyte.bin.t | 1 + travis/test/andbyte.json | 17 +++++++++++++++++ 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/test/andbyte.asm b/travis/test/andbyte.asm similarity index 53% copy from test/andbyte.asm copy to travis/test/andbyte.asm index 3d3b1c1..e017c1d 100644 --- a/test/andbyte.asm +++ b/travis/test/andbyte.asm @@ -1,6 +1,3 @@ -;Testname=test; Arguments=-fbin -oandbyte.bin; Files=stdout stderr andbyte.bin -;Testname=otest; Arguments=-Ox -fbin -oandbyte.bin; Files=stdout stderr andbyte.bin - bits 16 add sp, byte -0x10 diff --git a/travis/test/andbyte.bin.t b/travis/test/andbyte.bin.t new file mode 100644 index 0000000..6467d06 --- /dev/null +++ b/travis/test/andbyte.bin.t @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/travis/test/andbyte.json b/travis/test/andbyte.json new file mode 100644 index 0000000..6e02519 --- /dev/null +++ b/travis/test/andbyte.json @@ -0,0 +1,17 @@ +[ + { + "description": "Check byte operations (-Ox)", + "id": "andbyte", + "format": "bin", + "source": "andbyte.asm", + "option": "-Ox", + "target": [ + { "output": "andbyte.bin" } + ] + }, + { + "description": "Check byte operations", + "ref": "andbyte", + "update": false + } +] |