blob: bf0454981ee715577cce3de9054ccef8d7b423ba [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_mslab_alloc_wait_prio(void);
/*test case main entry*/
void test_main(void)
{
ztest_test_suite(mslab_concept,
ztest_1cpu_unit_test(test_mslab_alloc_wait_prio));
ztest_run_test_suite(mslab_concept);
}