Skip to content

Commit b6084e9

Browse files
committed
Python: Avoid Xserver conflict with xvfb-run
1 parent 50f1540 commit b6084e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/Python/scripts/make_smv_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
print(case[i])
4040
os.chdir(outdir + folder[i])
4141
if os_name == "Linux":
42-
subprocess.run(['xvfb-run',smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
42+
subprocess.run(['xvfb-run','-a',smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
4343
else:
4444
subprocess.run([smokeview_path,'-runscript',case[i]], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
4545
os.chdir(original_dir)

0 commit comments

Comments
 (0)