Skip to content

Commit b0d7dcf

Browse files
committed
Move test_umask to core suite
1 parent a42e9e0 commit b0d7dcf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/test_core.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5609,10 +5609,6 @@ def test_statx(self):
56095609
self.set_setting("FORCE_FILESYSTEM")
56105610
self.do_runf('stat/test_statx.c', 'success')
56115611

5612-
def test_umask(self):
5613-
self.set_setting("FORCE_FILESYSTEM")
5614-
self.do_runf('stat/test_umask.c', 'success')
5615-
56165612
def test_fstatat(self):
56175613
self.do_runf('stat/test_fstatat.c', 'success')
56185614

test/test_other.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7673,6 +7673,10 @@ def test_umask_0(self):
76737673
self.run_process([EMCC, 'src.c'])
76747674
self.assertContained('hello, world!', self.run_js('a.out.js'))
76757675

7676+
def test_umask(self):
7677+
self.set_setting("FORCE_FILESYSTEM")
7678+
self.do_runf('stat/test_umask.c', 'success')
7679+
76767680
def test_no_missing_symbols(self):
76777681
# simple hello world should not show any missing symbols
76787682
self.run_process([EMCC, test_file('hello_world.c')])

0 commit comments

Comments
 (0)