Fixed distutils test.

This commit is contained in:
Hirokazu Yamamoto 2009-07-12 02:04:47 +00:00
parent 9d2916cdfd
commit 6633a6606b
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ class BuildExtTestCase(support.TempdirManager,
def test_get_outputs(self):
tmp_dir = self.mkdtemp()
c_file = os.path.join(tmp_dir, 'foo.c')
self.write_file(c_file, 'void init_foo(void) {};\n')
self.write_file(c_file, 'void initfoo(void) {};\n')
ext = Extension('foo', [c_file], optional=False)
dist = Distribution({'name': 'xx',
'ext_modules': [ext]})