From 4a796725e0415f1c4444f34a8d3a46eed0576035 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 20 Apr 2011 17:01:51 +0900 Subject: [PATCH] test/lit.cfg: Fix suffix. --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index d7ace851..c1163755 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -63,7 +63,7 @@ class LibcxxTestFormat(lit.formats.FileBasedTest): report += "\n\nExpected compilation to fail!" return lit.Test.FAIL, report else: - exec_file = tempfile.NamedTemporaryFile(suffix="exe") + exec_file = tempfile.NamedTemporaryFile(suffix=".exe") exec_path = exec_file.name exec_file.close()