diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2018-06-16 21:59:02 +0200 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-07-02 17:30:55 +0100 |
commit | 9cace3f305561da4a635d753b5c35f268dd22b2e (patch) | |
tree | fd88df44f0a5a97df81e86ff0f2f3b47f49623c7 /test/lit.cfg | |
parent | 95cad2afcb5a25eec9774c30bc7f5deb77fa387b (diff) | |
download | klee-9cace3f305561da4a635d753b5c35f268dd22b2e.tar.gz |
test/lit.cfg: remove obsolete hack from (LLVM < 3.0 is no longer supported)
Diffstat (limited to 'test/lit.cfg')
-rw-r--r-- | test/lit.cfg | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index e570f9b2..780973d7 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -154,11 +154,6 @@ config.substitutions.append( ('%gentmp', os.path.join(klee_src_root, 'scripts/genTempFiles.sh')) ) -# LLVM < 3.0 doesn't Support %T directive -if int(config.llvm_version_major) == 2: - # This is a hack - config.substitutions.append(('%T','Output')) - # Add feature for the LLVM version in use, so it can be tested in REQUIRES and # XFAIL checks. We also add "not-XXX" variants, for the same reason. known_llvm_versions = set(["3.4", "3.5", "3.6", "3.7", "3.8", "3.9"]) |