diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-11 23:47:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-11 23:47:36 +0000 |
commit | 771d90ff4316d3557bfb1d6d500529d290b808d0 (patch) | |
tree | 6c8a9da2055ebe755a2a7acb1ed70e9d4f19f606 /utils/lit | |
parent | 0f29ad644898f174b356c8034135c2888f69757e (diff) | |
download | external_llvm-771d90ff4316d3557bfb1d6d500529d290b808d0.zip external_llvm-771d90ff4316d3557bfb1d6d500529d290b808d0.tar.gz external_llvm-771d90ff4316d3557bfb1d6d500529d290b808d0.tar.bz2 |
lit: Add a forgotten default argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/lit')
-rw-r--r-- | utils/lit/lit/TestRunner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/TestRunner.py b/utils/lit/lit/TestRunner.py index c2a6e5b..495badb 100644 --- a/utils/lit/lit/TestRunner.py +++ b/utils/lit/lit/TestRunner.py @@ -366,7 +366,7 @@ def isExpectedFail(xfails, xtargets, target_triple): return True -def parseIntegratedTestScript(test, normalize_slashes): +def parseIntegratedTestScript(test, normalize_slashes=False): """parseIntegratedTestScript - Scan an LLVM/Clang style integrated test script and extract the lines to 'RUN' as well as 'XFAIL' and 'XTARGET' information. The RUN lines also will have variable substitution performed. |