diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-27 04:29:36 +0000 | 
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-27 04:29:36 +0000 | 
| commit | c31d1528af222aaca8046c04812d6d3d8ce5b7f7 (patch) | |
| tree | 0f95aa4cfe041bcf2c52b18ab4e5fb9040dbcf9f | |
| parent | 710f944830799944497a83d6ef03ab767d335e47 (diff) | |
| download | bcm5719-llvm-c31d1528af222aaca8046c04812d6d3d8ce5b7f7.tar.gz bcm5719-llvm-c31d1528af222aaca8046c04812d6d3d8ce5b7f7.zip | |
tests: Windows ARM now supports object emission
Update lit.cfg with the fact that LLVM can now generate WoA PE/COFF objects.
llvm-svn: 207347
| -rw-r--r-- | llvm/test/lit.cfg | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index bbf0a6b1f50..df1850a663d 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -292,8 +292,7 @@ if (config.llvm_use_sanitizer == "Memory" or      config.available_features.add("msan")  # Direct object generation -if not 'hexagon' in config.target_triple and \ -   not re.match('(arm|thumb).*windows', config.target_triple): +if not 'hexagon' in config.target_triple:      config.available_features.add("object-emission")  if config.have_zlib == "1": | 

