trick/trick_source/trick_utils/comm/test/TCBlockioTest.cpp
Alex Lin 941eb5c1cc Remove duplicate stand-alone libraries
I changed trick comm so that there is only one version built, not a slightly different version
if you are in or out of a sim.  While I was in the trick comm code, I removed all of the
unnecessary system header file inclusions out of tc.h.   I modified each of the source files
to include the system files it requires.  Some sim_services files were including tc.h and
also had to be edited to add headers.  I removed the stand-alone makefiles out of all
of the trick_utils directories.  Finally I modified the master makefile to exclude the
trick_util directories comm, math, and units from being archived into libtrick.a.  Each of
those directories will create their own library and will be included when linking a Trick sim.

refs #71
2015-06-24 15:58:17 -05:00

61 lines
1.3 KiB
C++

#include <gtest/gtest.h>
#include "trick/tc.h"
#include "trick/attributes.h"
#include "trick/tc_proto.h"
#include "trick/trick_byteswap.h"
#include "trick/trick_error_hndlr.h"
class TCBlockioTest : public testing::Test {
protected:
TCBlockioTest(){}
~TCBlockioTest(){}
TCDevice* device;
void SetUp(){
device = (TCDevice *) malloc(sizeof(TCDevice));
memset( (void *)device,'\0',sizeof(TCDevice) );
}
void TearDown(){
free(device);
}
};
#if 0
TEST_F( TCBlockioTest, testNullDevice ) {
int blockio_status = tc_blockio( NULL, TC_COMM_ALL_OR_NOTHING );
EXPECT_EQ( TC_EWOULDBLOCK, blockio_status );
}
TEST_F( TCBlockioTest, testTC_COMM_BLOCKIO ) {
(void) tc_blockio( device, TC_COMM_BLOCKIO );
EXPECT_EQ( TC_COMM_BLOCKIO, device->blockio_type);
}
TEST_F( TCBlockioTest, testTC_COMM_NOBLOCKIO ) {
(void) tc_blockio( device, TC_COMM_NOBLOCKIO );
EXPECT_EQ( TC_COMM_NOBLOCKIO, device->blockio_type);
}
TEST_F( TCBlockioTest, testTC_COMM_TIMED_BLOCKIO ) {
(void) tc_blockio( device, TC_COMM_TIMED_BLOCKIO );
EXPECT_EQ( TC_COMM_TIMED_BLOCKIO, device->blockio_type );
}
TEST_F( TCBlockioTest, testTC_COMM_ALL_OR_NOTHING ) {
(void) tc_blockio( device, TC_COMM_ALL_OR_NOTHING );
EXPECT_EQ( TC_COMM_ALL_OR_NOTHING, device->blockio_type );
}
#endif