diff options
Diffstat (limited to 'test/MSVC/embed-manifest.py')
-rw-r--r-- | test/MSVC/embed-manifest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/MSVC/embed-manifest.py b/test/MSVC/embed-manifest.py index 13f1def..c0f8408 100644 --- a/test/MSVC/embed-manifest.py +++ b/test/MSVC/embed-manifest.py @@ -76,14 +76,14 @@ testdll(int argc, char *argv) }
""")
-test.run(arguments = '.')
+test.run(arguments='.')
test.must_exist('test%s' % _exe)
test.must_exist('test%s.manifest' % _exe)
-test.must_contain('exe-extracted.manifest', '</assembly>')
+test.must_contain('exe-extracted.manifest', '</assembly>', mode='r')
test.must_exist('testdll%s' % _dll)
test.must_exist('testdll%s.manifest' % _dll)
-test.must_contain('dll-extracted.manifest', '</assembly>')
+test.must_contain('dll-extracted.manifest', '</assembly>', mode='r')
test.pass_test()
|