diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-07-24 17:27:11 -0700 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2020-07-24 17:27:11 -0700 |
commit | 91a47a40a8490aaeceb5a8162eb47b758ca738a1 (patch) | |
tree | ac77d693d93045591ac84b2773e43d882a518894 /test/runner | |
parent | ea0342d470e7eabd9aa2968d4919c67784e4a358 (diff) |
Bugfix: non-native tests were tagged as native
Copy the list of tags when passing it to _syscall_test.
Diffstat (limited to 'test/runner')
-rw-r--r-- | test/runner/defs.bzl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index 600cb5192..c92392b35 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -157,7 +157,7 @@ def syscall_test( platform = "native", use_tmpfs = False, add_uds_tree = add_uds_tree, - tags = tags, + tags = list(tags), ) for (platform, platform_tags) in platforms.items(): |