From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:00:43
|
Commit-ID: 77bc7728667fc3848eabf85344bc2dc66bc39473 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=77bc7728667fc3848eabf85344bc2dc66bc39473 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 4 Nov 2018 18:20:19 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:45 +0300 test: nasm-t -- Add null test Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- test/nullfile.asm => travis/test/null.asm | 1 - travis/test/null.bin.t | 0 travis/test/null.json | 11 +++++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/test/nullfile.asm b/travis/test/null.asm similarity index 52% copy from test/nullfile.asm copy to travis/test/null.asm index 83e306e..338d710 100644 --- a/test/nullfile.asm +++ b/travis/test/null.asm @@ -1,4 +1,3 @@ -;Testname=test; Arguments=-fbin -onull.bin; Files=stdout stderr null.bin ; ; A file that produces no output has been known to occationally crash NASM. ; diff --git a/travis/test/null.bin.t b/travis/test/null.bin.t new file mode 100644 index 0000000..e69de29 diff --git a/travis/test/null.json b/travis/test/null.json new file mode 100644 index 0000000..d2fc94d --- /dev/null +++ b/travis/test/null.json @@ -0,0 +1,11 @@ +[ + { + "description": "Test null file", + "id": "null", + "format": "bin", + "source": "null.asm", + "target": [ + { "output": "null.bin" } + ] + } +] |