Skip to content

Commit

Permalink
macos is more like win32: we don't use a vfb, we don't have a display…
Browse files Browse the repository at this point in the history
… number

git-svn-id: https://xpra.org/svn/Xpra/trunk@19451 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 25, 2018
1 parent c7b7aa3 commit 1505bfc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import time
from collections import OrderedDict

from xpra.os_util import pollwait, WIN32, OSX
from xpra.os_util import pollwait, WIN32, OSX, POSIX
from unit.server_test_util import ServerTestUtil, log


Expand All @@ -34,7 +34,7 @@ class ServerMixinsOptionTestUtil(ServerTestUtil):
def setUpClass(cls):
ServerTestUtil.setUpClass()
cls.default_xpra_args = []
if not WIN32:
if POSIX and not OSX:
cls.default_xpra_args = [
"--systemd-run=no",
"--pulseaudio=no",
Expand All @@ -45,7 +45,7 @@ def setUpClass(cls):
cls.xvfb = None
cls.client_display = None
cls.client_xvfb = None
if not WIN32 and not OSX:
if POSIX and not OSX:
if False:
#use a single display for the server that we recycle:
cls.display = cls.find_free_display()
Expand Down

0 comments on commit 1505bfc

Please sign in to comment.