From ddb8f22ada5b22fcaa4ed850d58374becfb0a556 Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Wed, 27 Aug 2014 15:24:44 -0700 Subject: fix tests --- src/map/magic-expr.py | 4 ++++ src/map/magic-stmt.py | 4 ++++ src/map/map.py | 2 ++ src/map/script.py | 4 ++++ 4 files changed, 14 insertions(+) (limited to 'src/map') diff --git a/src/map/magic-expr.py b/src/map/magic-expr.py index cdb2bcf..865a175 100644 --- a/src/map/magic-expr.py +++ b/src/map/magic-expr.py @@ -26,6 +26,10 @@ class fun_t(object): yield '->ret_ty', value['ret_ty'] yield '->fun', value['fun'] + test_extra = ''' + using tmwa::operator "" _s; + ''' + tests = [ ('static_cast(nullptr)', '(fun_t *) nullptr'), ('new tmwa::magic::fun_t{"name"_s, "sig"_s, \'\\0\', nullptr}', '(fun_t *) = {->name = "name", ->signature = "sig", ->ret_ty = 0 \'\\000\', ->fun = 0x0}'), diff --git a/src/map/magic-stmt.py b/src/map/magic-stmt.py index 6e34bb0..70ce3ca 100644 --- a/src/map/magic-stmt.py +++ b/src/map/magic-stmt.py @@ -25,6 +25,10 @@ class op_t(object): yield '->signature', value['signature'] yield '->op', value['op'] + test_extra = ''' + using tmwa::operator "" _s; + ''' + tests = [ ('static_cast(nullptr)', '(op_t *) nullptr'), ('new tmwa::magic::op_t{"name"_s, "sig"_s, nullptr}', '(op_t *) = {->name = "name", ->signature = "sig", ->op = 0x0}'), diff --git a/src/map/map.py b/src/map/map.py index dc70782..56522c3 100644 --- a/src/map/map.py +++ b/src/map/map.py @@ -96,6 +96,8 @@ class map_abstract(object): ] test_extra = ''' + using tmwa::operator ""_s; + inline tmwa::map_local *fake_map_local(tmwa::ZString name, int xs, int ys) { diff --git a/src/map/script.py b/src/map/script.py index e3029d5..a5010cd 100644 --- a/src/map/script.py +++ b/src/map/script.py @@ -1,6 +1,10 @@ class script_data(object): enabled = True + test_extra = ''' + using tmwa::operator "" _s; + ''' + tests = [ ('tmwa::script_data(tmwa::ScriptDataPos{42})', '{> = {(tmwa::ScriptDataPos) = {numi = 42}}, }'), -- cgit v1.2.3-70-g09d2