set lang to C for test
authorSchanzenbach, Martin <mschanzenbach@posteo.de>
Wed, 11 Dec 2019 10:54:14 +0000 (11:54 +0100)
committerSchanzenbach, Martin <mschanzenbach@posteo.de>
Wed, 11 Dec 2019 10:54:14 +0000 (11:54 +0100)
src/peerinfo-tool/test_gnunet_peerinfo.py.in

index 9a87d3649db761ecb496493f7b6d0a46dfb8ed80..e350a5beb929ca297498452cd5f13287abe573a0 100755 (executable)
@@ -32,6 +32,10 @@ if gnunet_pyexpect_dir not in sys.path:
 
 from gnunet_pyexpect import pexpect
 
+#save LANG and set it to C
+mylang = os.environ['LANG']
+os.environ['LANG'] = 'en'
+
 if os.name == 'posix':
     peerinfo = './gnunet-peerinfo'
     gnunetarm = 'gnunet-arm'
@@ -134,3 +138,5 @@ finally:
         )
     else:
         shutil.rmtree("/tmp/gnunet-test-peerinfo", True)
+    #Reset LANG
+    os.environ['LANG'] = mylang