Skip to content

Commit

Permalink
ensure files are removed by 'cffi.verifier.cleanup_tmpdir()'
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Oct 11, 2024
1 parent da63800 commit 933fd2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/cffi0/test_verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -2176,7 +2176,7 @@ def test_verify_dlopen_flags():

lib1 = ffi1.verify("int foo_verify_dlopen_flags;",
flags=ffi1.RTLD_GLOBAL | ffi1.RTLD_LAZY,
modulename="test_verify_dlopen_flags")
modulename="_cffi_test_verify_dlopen_flags")
lib2 = get_second_lib()

lib1.foo_verify_dlopen_flags = 42
Expand All @@ -2189,7 +2189,7 @@ def get_second_lib():
ffi2.cdef("extern int foo_verify_dlopen_flags;")
lib2 = ffi2.verify("int foo_verify_dlopen_flags;",
flags=ffi2.RTLD_GLOBAL | ffi2.RTLD_LAZY,
modulename="test_verify_dlopen_flags")
modulename="_cffi_test_verify_dlopen_flags")
return lib2

def test_consider_not_implemented_function_type():
Expand Down

0 comments on commit 933fd2c

Please sign in to comment.