forked from OSchip/llvm-project
Use UNSUPPORTED: system-windows instead of REQUIRES: nowindows or UNSUPPORTED: windows. nowindows is not currently defined and windows does not cover all cases. system-windows is also consistent with how other platforms are used.
llvm-svn: 360368
This commit is contained in:
parent
08fa01a9b7
commit
bc9e086693
|
@ -1,4 +1,4 @@
|
|||
# REQUIRES: nowindows
|
||||
# UNSUPPORTED: system-windows
|
||||
#
|
||||
# RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t
|
||||
# RUN: lldb-test breakpoints %t %s | FileCheck %s
|
||||
|
|
|
@ -58,7 +58,7 @@ class LLVMConfig(object):
|
|||
elif platform.system() == "Linux":
|
||||
features.add('system-linux')
|
||||
elif platform.system() in ['FreeBSD']:
|
||||
config.available_features.add('system-freebsd')
|
||||
features.add('system-freebsd')
|
||||
elif platform.system() == "NetBSD":
|
||||
features.add('system-netbsd')
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# REQUIRES: python-psutil
|
||||
|
||||
# llvm.org/PR33944
|
||||
# UNSUPPORTED: windows
|
||||
# UNSUPPORTED: system-windows
|
||||
|
||||
# FIXME: This test is fragile because it relies on time which can
|
||||
# be affected by system performance. In particular we are currently
|
||||
|
|
Loading…
Reference in New Issue