Skip to content

Commit 03d1ea8

Browse files
committed
[test] skip issue4579-capture-remote on Linux
The system library crashes with vnc configuration
1 parent 5c35a0d commit 03d1ea8

File tree

1 file changed

+10
-0
lines changed
  • test/sanity/issue4579-capture-remote

1 file changed

+10
-0
lines changed

test/sanity/issue4579-capture-remote/test.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
import time
22
import os
33
import subprocess
4+
import platform
5+
import sys
6+
7+
if platform.system() == 'Linux':
8+
print 'Skipped for Linux platform'
9+
sys.exit(0)
10+
11+
12+
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
13+
from nw_util import *
414

515
from selenium import webdriver
616
from selenium.webdriver.chrome.options import Options

0 commit comments

Comments
 (0)