Author: Armin Rigo <[email protected]>
Branch: cffi-1.0
Changeset: r77398:2100a3190758
Date: 2015-05-19 19:41 +0200
http://bitbucket.org/pypy/pypy/changeset/2100a3190758/

Log:    Removing "build" dirs from the tests

diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_module/build/lib.linux-x86_64-3.4/snip_basic_verify.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_module/build/lib.linux-x86_64-3.4/snip_basic_verify.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_module/build/lib.linux-x86_64-3.4/snip_basic_verify.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_1/build/lib.linux-x86_64-3.4/snip_basic_verify1/__init__.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_1/build/lib.linux-x86_64-3.4/snip_basic_verify1/__init__.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_1/build/lib.linux-x86_64-3.4/snip_basic_verify1/__init__.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_2/build/lib.linux-x86_64-3.4/snip_basic_verify2/__init__.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_2/build/lib.linux-x86_64-3.4/snip_basic_verify2/__init__.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/distutils_package_2/build/lib.linux-x86_64-3.4/snip_basic_verify2/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     ext_package='snip_basic_verify2',
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/infrastructure/build/lib/snip_infrastructure/__init__.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/infrastructure/build/lib/snip_infrastructure/__init__.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/infrastructure/build/lib/snip_infrastructure/__init__.py
+++ /dev/null
@@ -1,4 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-def func():
-    return 42
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_module/build/lib.linux-x86_64-3.4/snip_setuptools_verify.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_module/build/lib.linux-x86_64-3.4/snip_setuptools_verify.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_module/build/lib.linux-x86_64-3.4/snip_setuptools_verify.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_1/build/lib.linux-x86_64-3.4/snip_setuptools_verify1/__init__.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_1/build/lib.linux-x86_64-3.4/snip_setuptools_verify1/__init__.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_1/build/lib.linux-x86_64-3.4/snip_setuptools_verify1/__init__.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
diff --git 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_2/build/lib.linux-x86_64-3.4/snip_setuptools_verify2/__init__.py
 
b/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_2/build/lib.linux-x86_64-3.4/snip_setuptools_verify2/__init__.py
deleted file mode 100644
--- 
a/pypy/module/test_lib_pypy/cffi_tests/cffi0/snippets/setuptools_package_2/build/lib.linux-x86_64-3.4/snip_setuptools_verify2/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Generated by pypy/tool/import_cffi.py
-
-from cffi import FFI
-import sys
-
-ffi = FFI()
-ffi.cdef("""     // some declarations from the man page
-    struct passwd {
-        char *pw_name;
-        ...;
-    };
-    struct passwd *getpwuid(int uid);
-""")
-C = ffi.verify("""   // passed to the real C compiler
-#include <sys/types.h>
-#include <pwd.h>
-""", libraries=[],    # or a list of libraries to link with
-     ext_package='snip_setuptools_verify2',
-     force_generic_engine=hasattr(sys, '_force_generic_engine_'))
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to