From 4590498d05d0b9efa042504eab37ae13384d8972 Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Thu, 20 Feb 2014 07:24:03 +0000 Subject: [libclang/python] Use a Python standard library module to create a temporary file. Patch by Brian Gesiak! llvm-svn: 201762 --- clang/bindings/python/tests/cindex/test_translation_unit.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'clang/bindings') diff --git a/clang/bindings/python/tests/cindex/test_translation_unit.py b/clang/bindings/python/tests/cindex/test_translation_unit.py index f77998e5245..be6cd671ae0 100644 --- a/clang/bindings/python/tests/cindex/test_translation_unit.py +++ b/clang/bindings/python/tests/cindex/test_translation_unit.py @@ -1,5 +1,6 @@ import gc import os +import tempfile from clang.cindex import CursorKind from clang.cindex import Cursor @@ -93,15 +94,7 @@ def save_tu(tu): Returns the filename it was saved to. """ - - # FIXME Generate a temp file path using system APIs. - base = 'TEMP_FOR_TRANSLATIONUNIT_SAVE.c' - path = os.path.join(kInputsDir, base) - - # Just in case. - if os.path.exists(path): - os.unlink(path) - + _, path = tempfile.mkstemp() tu.save(path) return path -- cgit v1.2.1