/** Unit tests for MPMC queue * * @author Steffen Vogel * @copyright 2014-2016, Institute for Automation of Complex Power Systems, EONERC * This file is part of VILLASnode. All Rights Reserved. Proprietary and confidential. * Unauthorized copying of this file, via any medium is strictly prohibited. *********************************************************************************/ #include #include "queue.h" Test(queue, singleThreaded) { /* struct queue q; queue_init(&q, 100, &memtype_heap); srand(1337); for (int i = 0; i < 100; i++) queue_push(&q, &) queue_destroy(&q);*/ }