Mark TestTerminal.py as XFAIL on OS X.

See the following tracking bug:
https://llvm.org/bugs/show_bug.cgi?id=25484

llvm-svn: 252699
This commit is contained in:
Todd Fiala 2015-11-11 03:43:05 +00:00
parent 5bcb152f26
commit b9b0c9c61d
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ class LaunchInTerminalTestCase(TestBase):
# a program in a separate terminal window. It would be great if other platforms
# added support for this.
@skipUnlessDarwin
@expectedFailureDarwin("llvm.org/pr25484")
# If the test is being run under sudo, the spawned terminal won't retain that elevated
# privilege so it can't open the socket to talk back to the test case
@unittest2.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, "test cannot be run as root")