diff options
-rw-r--r-- | lld/test/ELF/reproduce-windows.s | 4 | ||||
-rw-r--r-- | lld/test/lit.cfg | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lld/test/ELF/reproduce-windows.s b/lld/test/ELF/reproduce-windows.s index 7943f3c10b7..464b2709869 100644 --- a/lld/test/ELF/reproduce-windows.s +++ b/lld/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/lld/test/lit.cfg b/lld/test/lit.cfg index d1dd249e1b4..5ff4fc4edcf 100644 --- a/lld/test/lit.cfg +++ b/lld/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') |