Skip to content

Commit e68efed

Browse files
committed
Fix more compiler-rt tests after #149015.
1 parent f295617 commit e68efed

File tree

31 files changed

+32
-32
lines changed

31 files changed

+32
-32
lines changed

compiler-rt/test/asan/TestCases/Darwin/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Darwin"]:
9+
if root.target_os not in ["Darwin"]:
1010
config.unsupported = True

compiler-rt/test/asan/TestCases/Linux/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Linux"]:
9+
if root.target_os not in ["Linux"]:
1010
config.unsupported = True

compiler-rt/test/asan/TestCases/Posix/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os in ["Windows"]:
9+
if root.target_os in ["Windows"]:
1010
config.unsupported = True

compiler-rt/test/asan/TestCases/Windows/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Windows"]:
9+
if root.target_os not in ["Windows"]:
1010
config.unsupported = True

compiler-rt/test/builtins/TestCases/Darwin/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Darwin"]:
9+
if root.target_os not in ["Darwin"]:
1010
config.unsupported = True

compiler-rt/test/cfi/cross-dso/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Linux", "FreeBSD", "NetBSD"]:
9+
if root.target_os not in ["Linux", "FreeBSD", "NetBSD"]:
1010
config.unsupported = True
1111

1212
# Android O (API level 26) has support for cross-dso cfi in libdl.so.

compiler-rt/test/hwasan/TestCases/Linux/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Linux"]:
9+
if root.target_os not in ["Linux"]:
1010
config.unsupported = True

compiler-rt/test/hwasan/TestCases/Posix/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os in ["Windows"]:
9+
if root.target_os in ["Windows"]:
1010
config.unsupported = True

compiler-rt/test/lsan/TestCases/Darwin/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Darwin"]:
9+
if root.target_os not in ["Darwin"]:
1010
config.unsupported = True

compiler-rt/test/lsan/TestCases/Linux/lit.local.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ def getRoot(config):
66

77
root = getRoot(config)
88

9-
if root.host_os not in ["Linux"]:
9+
if root.target_os not in ["Linux"]:
1010
config.unsupported = True

0 commit comments

Comments
 (0)