mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
45fc47013f
Tested by comparing make check VERBOSE=1 before and after to make sure no tests are missed. (VERBOSE=1 prints the list of tests.) Only one test :( remains where .cpp is required: tools/llvm-cov/range_based_for.cpp:// RUN: llvm-cov range_based_for.cpp | FileCheck %s --check-prefix=STDOUT The topic was discussed in this thread: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20140428/214905.html git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208621 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
276 B
INI
12 lines
276 B
INI
import re
|
|
|
|
config.suffixes = ['.ll']
|
|
|
|
targets = set(config.root.targets_to_build.split())
|
|
if not 'ARM64' in targets:
|
|
config.unsupported = True
|
|
|
|
# For now we don't test arm64-win32.
|
|
if re.search(r'cygwin|mingw32|win32', config.target_triple):
|
|
config.unsupported = True
|