summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/cases/loader/threaded/threaded_depends.py
blob: 0c158d3bacf14a8307b9bc0628311eeee0eea1c3 (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright (C) 2017 Intel Corporation
# Released under the MIT license (see COPYING.MIT)

from oeqa.core.case import OETestCase
from oeqa.core.decorator.depends import OETestDepends

class ThreadedTest3(OETestCase):
    @OETestDepends(['threaded.ThreadedTest.test_threaded_no_depends'])
    def test_threaded_depends(self):
        self.assertTrue(True, msg='How is this possible?')