From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:33
|
Commit-ID: aa085435753565c8c22add33556e5baa12284933 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=aa085435753565c8c22add33556e5baa12284933 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sat, 3 Nov 2018 19:52:19 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add uscore test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/uscore.asm | 1 - travis/test/uscore.bin.t | Bin 0 -> 56 bytes travis/test/uscore.json | 11 +++++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/test/uscore.asm b/travis/test/uscore.asm similarity index 84% copy from test/uscore.asm copy to travis/test/uscore.asm index ec61443..b82b7ce 100644 --- a/test/uscore.asm +++ b/travis/test/uscore.asm @@ -1,4 +1,3 @@ -;Testname=test; Arguments=-fbin -ouscore.bin; Files=stdout stderr uscore.bin dd 0x1234_5678 dd 305_419_896 ; Same number as above it dd 0x1e16 ; NOT a floating-point number! diff --git a/travis/test/uscore.bin.t b/travis/test/uscore.bin.t new file mode 100644 index 0000000..4032615 Binary files /dev/null and b/travis/test/uscore.bin.t differ diff --git a/travis/test/uscore.json b/travis/test/uscore.json new file mode 100644 index 0000000..36df00a --- /dev/null +++ b/travis/test/uscore.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test numbers conversion", + "id": "uscore", + "format": "bin", + "source": "uscore.asm", + "target": [ + { "output": "uscore.bin" } + ] + } +] |