Exemple #1
0
 def test_win32Definition(self):
     """
     When building on Windows NT, the WIN32 macro will be defined as 1.
     """
     ext = ConditionalExtension("whatever", ["whatever.c"],
                                define_macros=[("whatever", 2)])
     args = get_setup_args(conditionalExtensions=[ext])
     builder = args["cmdclass"]["build_ext"](Distribution())
     self.patch(os, "name", "nt")
     builder.prepare_extensions()
     self.assertEquals(ext.define_macros, [("whatever", 2), ("WIN32", 1)])
Exemple #2
0
 def test_win32Definition(self):
     """
     When building on Windows NT, the WIN32 macro will be defined as 1.
     """
     ext = ConditionalExtension("whatever", ["whatever.c"],
                                define_macros=[("whatever", 2)])
     args = get_setup_args(conditionalExtensions=[ext])
     builder = args["cmdclass"]["build_ext"](Distribution())
     self.patch(os, "name", "nt")
     builder.prepare_extensions()
     self.assertEquals(ext.define_macros, [("whatever", 2), ("WIN32", 1)])
Exemple #3
0
 def test_conditionalExtensions(self):
     """
     Passing C{conditionalExtensions} as a list of L{ConditionalExtension}
     objects to get_setup_args inserts a custom build_ext into the result
     which knows how to check whether they should be 
     """
     good_ext = ConditionalExtension("whatever", ["whatever.c"],
                                     condition=lambda b: True)
     bad_ext = ConditionalExtension("whatever", ["whatever.c"],
                                     condition=lambda b: False)
     args = get_setup_args(conditionalExtensions=[good_ext, bad_ext])
     # ext_modules should be set even though it's not used.  See comment
     # in get_setup_args
     self.assertEquals(args["ext_modules"], [good_ext, bad_ext])
     cmdclass = args["cmdclass"]
     build_ext = cmdclass["build_ext"]
     builder = build_ext(Distribution())
     builder.prepare_extensions()
     self.assertEquals(builder.extensions, [good_ext])
Exemple #4
0
 def test_conditionalExtensions(self):
     """
     Passing C{conditionalExtensions} as a list of L{ConditionalExtension}
     objects to get_setup_args inserts a custom build_ext into the result
     which knows how to check whether they should be 
     """
     good_ext = ConditionalExtension("whatever", ["whatever.c"],
                                     condition=lambda b: True)
     bad_ext = ConditionalExtension("whatever", ["whatever.c"],
                                    condition=lambda b: False)
     args = get_setup_args(conditionalExtensions=[good_ext, bad_ext])
     # ext_modules should be set even though it's not used.  See comment
     # in get_setup_args
     self.assertEquals(args["ext_modules"], [good_ext, bad_ext])
     cmdclass = args["cmdclass"]
     build_ext = cmdclass["build_ext"]
     builder = build_ext(Distribution())
     builder.prepare_extensions()
     self.assertEquals(builder.extensions, [good_ext])