diff options
author | Josh Hejna <josh.hejna@gmail.com> | 2018-07-29 19:34:39 -0700 |
---|---|---|
committer | Josh Hejna <josh.hejna@gmail.com> | 2018-07-29 20:30:59 -0700 |
commit | ed1caf0d85a4888fadc8486e98e7c268a3947fe8 (patch) | |
tree | 08121ec20ca69a031e2c1fba2328559046ceb58c /tests/headers/constify-module-enums-types.hpp | |
parent | d61ab759e3512d79131eb6c455862915c6b6c4d2 (diff) |
Quote regexes in test headers
When using test-one.sh, unquoted wildcards are expanded by the shell,
resulting in failing tests.
Diffstat (limited to 'tests/headers/constify-module-enums-types.hpp')
-rw-r--r-- | tests/headers/constify-module-enums-types.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/headers/constify-module-enums-types.hpp b/tests/headers/constify-module-enums-types.hpp index 2c652499..decf935a 100644 --- a/tests/headers/constify-module-enums-types.hpp +++ b/tests/headers/constify-module-enums-types.hpp @@ -1,4 +1,4 @@ -// bindgen-flags: --constified-enum-module .* +// bindgen-flags: --constified-enum-module ".*" typedef enum foo { THIS, @@ -75,4 +75,4 @@ class Thing { }; foo func3(Thing<foo> arg1); -foo func4(Thing< Thing<foo> > arg1);
\ No newline at end of file +foo func4(Thing< Thing<foo> > arg1); |