Don't enumerate GPUs in child process helper

This commit is contained in:
baldurk
2020-10-19 17:43:58 +01:00
parent a95d51e28c
commit c56e1f0ae4
+3 -1
View File
@@ -418,7 +418,9 @@ def internal_run_test(test_name):
for testclass in testcases:
if testclass.__name__ == test_name:
rd.InitialiseReplay(rd.GlobalEnvironment(), [])
globalenv = rd.GlobalEnvironment()
globalenv.enumerateGPUs = False
rd.InitialiseReplay(globalenv, [])
log.begin_test(test_name, print_header=False)