initial commit
This commit is contained in:
36
DRAM/main.cpp
Normal file
36
DRAM/main.cpp
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* main.cpp
|
||||
*
|
||||
* Created on: Mar 5, 2014
|
||||
* Author: jonny
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include <gtest/gtest.h>
|
||||
#include <tlm.h>
|
||||
#include <systemc.h>
|
||||
#include <unistd.h>
|
||||
#include <gtest/gtest.h>
|
||||
#include <memory.h>
|
||||
|
||||
using namespace std;
|
||||
using namespace testing;
|
||||
|
||||
|
||||
int runTests(int argc, char **argv)
|
||||
{
|
||||
cout << "---- Starting Tests ----" <<endl;
|
||||
InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
|
||||
|
||||
/*int sc_main(int argc, char **argv) {
|
||||
|
||||
return runTests(argc,argv);
|
||||
}*/
|
||||
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
return runTests(argc,argv);
|
||||
}
|
||||
Reference in New Issue
Block a user