]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - support/testing/tests/fs/test_yaffs2.py
support/testing: fix code style
[coffee/buildroot.git] / support / testing / tests / fs / test_yaffs2.py
1 import os
2
3 import infra.basetest
4
5
6 class TestYaffs2(infra.basetest.BRTest):
7     config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
8         infra.basetest.MINIMAL_CONFIG + \
9         """
10         BR2_TARGET_ROOTFS_YAFFS2=y
11         """
12
13     def test_run(self):
14         img = os.path.join(self.builddir, "images", "rootfs.yaffs2")
15         self.assertTrue(os.path.exists(img))