From 1d8c06a0afc069741f502e900cb9ebb91811a170 Mon Sep 17 00:00:00 2001
From: Magnus Jacobsson <magnus.jacobsson@berotec.se>
Date: Mon, 3 Aug 2020 08:01:25 +0200
Subject: [PATCH] Don't treat Windows as an unrecognized system

---
 rtest/rtest.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/rtest/rtest.py b/rtest/rtest.py
index be42e8a1f..0ac6d4611 100755
--- a/rtest/rtest.py
+++ b/rtest/rtest.py
@@ -312,6 +312,8 @@ if not REFDIR:
     REFDIR = 'linux.x86'
   elif platform.system() == 'Darwin':
     REFDIR = 'macosx'
+  elif platform.system() == 'Windows':
+    REFDIR = 'nshare'
   else:
     print('Unrecognized system "{0}"'.format(platform.system()), file=sys.stderr)
     REFDIR = 'nshare'
-- 
2.40.0