We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79bbaa6 commit b842f22Copy full SHA for b842f22
test/test_other.py
@@ -9328,7 +9328,7 @@ def test_side_module_ignore(self):
9328
9329
# Attempting to link statically against a side module (libside.so) should fail.
9330
err = self.expect_fail([EMCC, '-L.', '-lside'])
9331
- self.assertContained('error: attempted static link of dynamic object ./libside.so', err)
+ self.assertContained(r'error: attempted static link of dynamic object \.[/\\]libside.so', err, regex=True)
9332
9333
# But a static library in the same location (libside.a) should take precedence.
9334
self.run_process([EMCC, test_file('hello_world.c'), '-c'])
0 commit comments