From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:50
|
Commit-ID: e55f0b9dafd802f920ff28dc26c1f4e1d8f32ec0 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=e55f0b9dafd802f920ff28dc26c1f4e1d8f32ec0 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 18:27:54 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add float8 test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/float8.asm | 3 --- travis/test/float8.bin.t | Bin 0 -> 123 bytes travis/test/float8.json | 12 ++++++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/test/float8.asm b/travis/test/float8.asm similarity index 92% copy from test/float8.asm copy to travis/test/float8.asm index d59abec..ddeb810 100644 --- a/test/float8.asm +++ b/travis/test/float8.asm @@ -1,6 +1,3 @@ -;Testname=unoptimized; Arguments=-O0 -fbin -ofloat8.bin; Files=stdout stderr float8.bin -;Testname=optimized; Arguments=-Ox -fbin -ofloat8.bin; Files=stdout stderr float8.bin - ; Test of 8-bit floating-point constants ; Zero diff --git a/travis/test/float8.bin.t b/travis/test/float8.bin.t new file mode 100644 index 0000000..b3a0f37 Binary files /dev/null and b/travis/test/float8.bin.t differ diff --git a/travis/test/float8.json b/travis/test/float8.json new file mode 100644 index 0000000..e7eec01 --- /dev/null +++ b/travis/test/float8.json @@ -0,0 +1,12 @@ +[ + { + "description": "Test of 8-bit floating-point constants", + "id": "float8", + "format": "bin", + "source": "float8.asm", + "option": "-Ox", + "target": [ + { "output": "float8.bin" } + ] + } +] |