Skip to content

Commit

Permalink
Fix cl support in test runner
Browse files Browse the repository at this point in the history
It got broken some time in adding standards testing
  • Loading branch information
LivInTheLookingGlass committed Jul 22, 2024
1 parent 53f1faa commit 2777514
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion c/test_euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
compilers.extend(f'CLANG+{std}' for std in STANDARDS)
if AOCC_BINARY != 'clang' and which(AOCC_BINARY):
compilers.extend(f'AOCC+{std}' for std in STANDARDS)
for x in ('icc', 'icc'):
for x in ('cl', 'icc'):
if which(x):
compilers.extend(f'{x.upper()}+{std}' for std in STANDARDS)
for x in ('pcc', 'tcc'):
Expand Down
2 changes: 1 addition & 1 deletion cplusplus/test_euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
compilers.extend(f'CLANG+{std}' for std in STANDARDS)
if AOCC_BINARY != 'clang' and which(AOCC_BINARY):
compilers.extend(f'AOCC+{std}' for std in STANDARDS)
for x in ('icc', 'icc'):
for x in ('cl', 'icc'):
if which(x):
compilers.extend(f'{x.upper()}+{std}' for std in STANDARDS)
if not compilers:
Expand Down

0 comments on commit 2777514

Please sign in to comment.