From fcc85aeef70d60032f3a8794a9340225814f052b Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 12 Nov 2018 23:28:18 +0300 Subject: [PATCH] test: nasm-t -- Extend inctest To address https://bugzilla.nasm.us/show_bug.cgi?id=3392527 Signed-off-by: Cyrill Gorcunov --- travis/test/inc3.asm | 6 ++++++ travis/test/inctest.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 travis/test/inc3.asm diff --git a/travis/test/inc3.asm b/travis/test/inc3.asm new file mode 100644 index 00000000..797599e0 --- /dev/null +++ b/travis/test/inc3.asm @@ -0,0 +1,6 @@ +; +; To address https://bugzilla.nasm.us/show_bug.cgi?id=3392527 +; +%ifndef __OUTPUT_FORMAT__ + %fatal '__OUTPUT_FORMAT__ defined as ', __OUTPUT_FORMAT__ +%endif diff --git a/travis/test/inctest.json b/travis/test/inctest.json index f0947ff7..9d641254 100644 --- a/travis/test/inctest.json +++ b/travis/test/inctest.json @@ -4,7 +4,7 @@ "id": "inctest", "format": "bin", "source": "inctest.asm", - "option": "-i./travis/test/", + "option": "-i./travis/test/ -p inc3.asm", "target": [ { "output": "inctest.com" } ]