From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:01:08
|
Commit-ID: b8556e7e20ad24bfcb5ea0b03b160436cca5043e Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=b8556e7e20ad24bfcb5ea0b03b160436cca5043e Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 23:21:23 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Add fwdopt Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- {test => travis/test}/fwdopt.asm | 1 - travis/test/{fwdoptpp.bin.t => fwdopt.bin.t} | Bin 257 -> 261 bytes travis/test/fwdopt.json | 11 +++++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/test/fwdopt.asm b/travis/test/fwdopt.asm similarity index 95% copy from test/fwdopt.asm copy to travis/test/fwdopt.asm index 48dbc3f..7c3f0f5 100644 --- a/test/fwdopt.asm +++ b/travis/test/fwdopt.asm @@ -1,4 +1,3 @@ -;Testname=test; Arguments=-fbin -ofwdopt.bin; Files=stdout stderr fwdopt.bin n0: jmp n1 n1: jmp n2 n2: jmp n3 diff --git a/travis/test/fwdoptpp.bin.t b/travis/test/fwdopt.bin.t similarity index 98% copy from travis/test/fwdoptpp.bin.t copy to travis/test/fwdopt.bin.t index d9ede46..1247d35 100644 Binary files a/travis/test/fwdoptpp.bin.t and b/travis/test/fwdopt.bin.t differ diff --git a/travis/test/fwdopt.json b/travis/test/fwdopt.json new file mode 100644 index 0000000..5c23ef5 --- /dev/null +++ b/travis/test/fwdopt.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test jmp optimization", + "id": "fwdopt", + "format": "bin", + "source": "fwdopt.asm", + "target": [ + { "output": "fwdopt.bin" } + ] + } +] |