about summary refs log tree commit diff homepage
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorPavel Yatcheniy <yatcheniy.pavel@huawei.com>2021-06-17 16:49:52 +0300
committerCristian Cadar <c.cadar@imperial.ac.uk>2021-06-19 21:23:42 +0100
commitdf04aeadefb4e1c34c7ef8b9123947ff045a34d9 (patch)
tree867bf4d541ac06e826dc6e9e543e35800e3d75c5 /test/lit.cfg
parent24badb5bf17ff586dc3f1856901f27210713b2ac (diff)
downloadklee-df04aeadefb4e1c34c7ef8b9123947ff045a34d9.tar.gz
Test failure for WSL 1
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index a195a1dc..4138a59d 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -211,6 +211,14 @@ for target in supported_targets:
     config.available_features.add(target)
   else:
     config.available_features.add('not-{}'.format(target))
+if 'WSL_DISTRO_NAME' in os.environ and 'WSL_INTEROP' not in os.environ:
+  config.available_features.add('wsl-1')
+else:
+  config.available_features.add('not-wsl-1')
+if 'WSL_DISTRO_NAME' in os.environ and 'WSL_INTEROP' in os.environ:
+  config.available_features.add('wsl-2')
+else:
+  config.available_features.add('not-wsl-2')
 
 # Sanitizer
 config.available_features.add('{}asan'.format('' if config.have_asan else 'not-'))