Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/test_core.py
Original file line number Diff line number Diff line change
@@ -6163,7 +6163,7 @@ def test_unistd_links(self):
self.do_run_in_out_file_test('unistd/links.c')

@also_with_noderawfs
@no_windows('TODO: Fails on Windows due to an unknown reason.')
@crossplatform
def test_unistd_write_broken_link(self):
self.do_run_in_out_file_test('unistd/test_unistd_write_broken_link.c')

@@ -8321,7 +8321,7 @@ def test_asyncify_unused(self):
'onlylist_b_response': ([], True, 'main\n__original_main\nfoo(int, double)\nbaz()\nc_baz\nStructy::funcy()\n'),
'onlylist_c_response': ([], False, 'main\n__original_main\nfoo(int, double)\nbaz()\nc_baz\n'),
})
@no_windows("TODO: Fails on Windows due to an unknown reason.")
@crossplatform
def test_asyncify_lists(self, args, should_pass, response=None):
if response is not None:
create_file('response.file', response)
1 change: 1 addition & 0 deletions test/test_other.py
Original file line number Diff line number Diff line change
@@ -1761,6 +1761,7 @@ def test_ungetc_fscanf(self):
self.emcc('main.c', ['--embed-file', 'my_test.input'], output_filename='a.out.js')
self.assertContained('zyx', self.run_process(config.JS_ENGINES[0] + ['a.out.js'], stdout=PIPE, stderr=PIPE).stdout)

@crossplatform
def test_abspaths(self):
# Includes with absolute paths are generally dangerous, things like -I/usr/.. will get to system
# local headers, not our portable ones.