forked from flang-compiler/f18
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CMakeLists changes, moved config and made test scripts compatible.
All Fortran tests are now run in lit, except Preprocessing tests flang-compiler#1052 Preprocessing tests are a separate kind of test, so will be sorted out later.
- Loading branch information
1 parent
4027819
commit e922882
Showing
9 changed files
with
29 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# -*- Python -*- | ||
|
||
import os | ||
import platform | ||
import sys | ||
|
||
import lit.formats | ||
from lit.llvm import llvm_config | ||
|
||
# Configuration file for the 'lit' test runner. | ||
|
||
# testFormat: The test format to use to interpret tests. | ||
config.test_format = lit.formats.ShTest(execute_external=False) | ||
|
||
# suffixes: A list of file extensions to treat as test files. | ||
config.suffixes = [] |
Oops, something went wrong.