From: nasm-bot f. C. G. <gor...@gm...> - 2018-11-12 07:01:29
|
Commit-ID: 536f28188c2164e54e201aa80765bfd06f29a8f2 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=536f28188c2164e54e201aa80765bfd06f29a8f2 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Mon, 5 Nov 2018 13:42:41 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 11 Nov 2018 21:43:46 +0300 test: nasm-t -- Add elfso Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- travis/test/elfso-o0.o.t | Bin 0 -> 1248 bytes travis/test/elfso-o0.stderr | 1 + travis/test/elfso-ox.o.t | Bin 0 -> 1248 bytes travis/test/elfso-ox.stderr | 1 + {test => travis/test}/elfso.asm | 0 travis/test/elfso.json | 22 ++++++++++++++++++++++ 6 files changed, 24 insertions(+) diff --git a/travis/test/elfso-o0.o.t b/travis/test/elfso-o0.o.t new file mode 100644 index 0000000..7474e3e Binary files /dev/null and b/travis/test/elfso-o0.o.t differ diff --git a/travis/test/elfso-o0.stderr b/travis/test/elfso-o0.stderr new file mode 100644 index 0000000..77bf808 --- /dev/null +++ b/travis/test/elfso-o0.stderr @@ -0,0 +1 @@ +./travis/test/elfso.asm:83: warning: label alone on a line without a colon might be in error [-w+orphan-labels] \ No newline at end of file diff --git a/travis/test/elfso-ox.o.t b/travis/test/elfso-ox.o.t new file mode 100644 index 0000000..1536fed Binary files /dev/null and b/travis/test/elfso-ox.o.t differ diff --git a/travis/test/elfso-ox.stderr b/travis/test/elfso-ox.stderr new file mode 100644 index 0000000..77bf808 --- /dev/null +++ b/travis/test/elfso-ox.stderr @@ -0,0 +1 @@ +./travis/test/elfso.asm:83: warning: label alone on a line without a colon might be in error [-w+orphan-labels] \ No newline at end of file diff --git a/test/elfso.asm b/travis/test/elfso.asm similarity index 100% copy from test/elfso.asm copy to travis/test/elfso.asm diff --git a/travis/test/elfso.json b/travis/test/elfso.json new file mode 100644 index 0000000..ff7ddde --- /dev/null +++ b/travis/test/elfso.json @@ -0,0 +1,22 @@ +[ + { + "description": "Test elf shared library (-Ox)", + "id": "elfso", + "format": "elf32", + "source": "elfso.asm", + "option": "-Ox", + "target": [ + { "output": "elfso-ox.o" }, + { "stderr": "elfso-ox.stderr" } + ] + }, + { + "description": "Test elf shared library (-O0)", + "ref": "elfso", + "option": "-O0", + "target": [ + { "output": "elfso-o0.o" }, + { "stderr": "elfso-o0.stderr" } + ] + } +] |