diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-31 11:13:26 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-31 11:13:26 -0800 |
commit | f70fd0ef85f5c7383db9cbc1658c0bc6752d75a8 (patch) | |
tree | 23655be8e5ab1d3f93ede2b0347f49463bfc4954 /tests/test_core.py | |
parent | c326a24f775f4fda03c6a59f62759c5c7dfa4baa (diff) | |
parent | e431e3d0e7e8cb17d956f8da4b94d4e02fa8efdf (diff) |
Merge pull request #2079 from inolen/fs_unmount
fs unmount support
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 4d915e71..43b675f5 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -3957,6 +3957,10 @@ def process(filename): ''' self.do_run(src, ('got: 35\ngot: 45\ngot: 25\ngot: 15\nisatty? 0,0,1\n', 'isatty? 0,0,1\ngot: 35\ngot: 45\ngot: 25\ngot: 15\n'), post_build=post) + def test_mount(self): + src = open(path_from_root('tests', 'fs', 'test_mount.c'), 'r').read() + self.do_run(src, 'success', force_c=True) + def test_fwrite_0(self): test_path = path_from_root('tests', 'core', 'test_fwrite_0') src, output = (test_path + s for s in ('.in', '.out')) |