From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:46
|
Commit-ID: 348feb7eedee8796f4706c033c7a09d215e49918 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=348feb7eedee8796f4706c033c7a09d215e49918 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 13:31:01 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add avx test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/avx.asm | 3 --- travis/test/avx.bin.t | Bin 0 -> 159 bytes travis/test/avx.json | 17 +++++++++++++++++ 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/test/avx.asm b/travis/test/avx.asm similarity index 85% copy from test/avx.asm copy to travis/test/avx.asm index e114639..158a11a 100644 --- a/test/avx.asm +++ b/travis/test/avx.asm @@ -1,6 +1,3 @@ -;Testname=unoptimized; Arguments=-O0 -fbin -oavx.bin; Files=stdout stderr avx.bin -;Testname=optimized; Arguments=-Ox -fbin -oavx.bin; Files=stdout stderr avx.bin - bits 64 blendvpd xmm2,xmm1,xmm0 diff --git a/travis/test/avx.bin.t b/travis/test/avx.bin.t new file mode 100644 index 0000000..d24559b Binary files /dev/null and b/travis/test/avx.bin.t differ diff --git a/travis/test/avx.json b/travis/test/avx.json new file mode 100644 index 0000000..ec41fe0 --- /dev/null +++ b/travis/test/avx.json @@ -0,0 +1,17 @@ +[ + { + "description": "Test AVX instructions (-Ox)", + "id": "avx", + "format": "bin", + "source": "avx.asm", + "option": "-Ox", + "target": [ + { "output": "avx.bin" } + ] + }, + { + "description": "Test AVX instructions (-O0)", + "ref": "avx", + "option": "-O0" + } +] |