Skip to content

Commit

Permalink
[llvm-exegesis][x86] Limit llvm-exegesis analysis tests to x86_64 tri…
Browse files Browse the repository at this point in the history
…ple hosts

Attempting to fix an issue with test failures on arm m1 apple macintoshes reported on D109353
  • Loading branch information
RKSimon committed Sep 7, 2021
1 parent 73c00d4 commit 056b409
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion llvm/test/tools/llvm-exegesis/X86/lit.local.cfg
@@ -1,2 +1,7 @@
if not 'X86' in config.root.targets:
if not ('X86' in config.root.targets):
# We need support for X86.
config.unsupported = True

elif not ('x86_64' in config.root.host_triple):
# We need to be running on an X86 host.
config.unsupported = True

0 comments on commit 056b409

Please sign in to comment.