diff --git a/util/test/rdtest/runner.py b/util/test/rdtest/runner.py index f5a3ccbf5..b521bb298 100644 --- a/util/test/rdtest/runner.py +++ b/util/test/rdtest/runner.py @@ -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)