aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2016-07-07 13:52:04 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2016-07-07 13:52:04 +0000
commita74afb24d467709c3a1680a7c69493c7b3cd3f51 (patch)
tree4e0a4c8e106f1a70e4a7206b5678dab6b8139ef0
parent27780c868ab27497ade4e9846dabd4e0da322a30 (diff)
This now works on unix too.
With this there are no unsupported tests on linux in test/ELF :-) git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@274752 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/ELF/reproduce-windows.s4
-rw-r--r--test/lit.cfg4
2 files changed, 2 insertions, 6 deletions
diff --git a/test/ELF/reproduce-windows.s b/test/ELF/reproduce-windows.s
index 7943f3c10..464b27098 100644
--- a/test/ELF/reproduce-windows.s
+++ b/test/ELF/reproduce-windows.s
@@ -1,6 +1,6 @@
-# REQUIRES: x86, system-windows
+# REQUIRES: x86
-# Test that we can create a repro archive on windows.
+# Test that a repro archive always uses / instead of \.
# RUN: rm -rf %t.dir
# RUN: mkdir -p %t.dir/build
# RUN: llvm-mc %s -o %t.dir/build/foo.o -filetype=obj -triple=x86_64-pc-linux
diff --git a/test/lit.cfg b/test/lit.cfg
index d1dd249e1..5ff4fc4ed 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -199,10 +199,6 @@ if config.have_zlib == "1":
if platform.system() in ['Darwin']:
config.available_features.add('system-linker-mach-o')
-# Running on Windows
-if platform.system() in ['Windows'] and re.match(r'.*-win32$', config.target_triple):
- config.available_features.add('system-windows')
-
# Running on ELF based *nix
if platform.system() in ['FreeBSD', 'Linux']:
config.available_features.add('system-linker-elf')