summaryrefslogtreecommitdiffhomepage
path: root/test/unit/option.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/option.py')
-rw-r--r--test/unit/option.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/option.py b/test/unit/option.py
index cb3803dc..e00a043a 100644
--- a/test/unit/option.py
+++ b/test/unit/option.py
@@ -1,7 +1,13 @@
+import os
+import platform
+
class Options:
_options = {
+ 'architecture': platform.architecture()[0],
+ 'is_privileged': os.geteuid() == 0,
'skip_alerts': [],
'skip_sanitizer': False,
+ 'system': platform.system()
}
def __setattr__(self, name, value):