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/class_with_inner_struct.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/class_with_inner_struct.hpp')
-rw-r--r-- | tests/headers/class_with_inner_struct.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/headers/class_with_inner_struct.hpp b/tests/headers/class_with_inner_struct.hpp index 66c2bd3f..fd195fb7 100644 --- a/tests/headers/class_with_inner_struct.hpp +++ b/tests/headers/class_with_inner_struct.hpp @@ -1,4 +1,4 @@ -// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rustified-enum .* +// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rustified-enum ".*" // bindgen-flags: -- -std=c++11 class A { |