mirror of
https://github.com/YosysHQ/yosys
synced 2026-08-14 09:55:37 +00:00
14 lines
208 B
C++
14 lines
208 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "kernel/yosys.h"
|
|
#include "kernel/log.h"
|
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
TEST(KernelLogTest, logvValidValues)
|
|
{
|
|
//TODO: Implement log test
|
|
EXPECT_EQ(7, 7);
|
|
}
|
|
|
|
YOSYS_NAMESPACE_END
|