tests: PROD_HOST to TESTPROD_HOST; VxWorks tests for testApp/pv PASSES

This commit is contained in:
Matej Sekoranja
2014-10-31 06:42:52 -04:00
parent f06a6bfe7b
commit 2a8a1d3736
5 changed files with 98 additions and 42 deletions

View File

@@ -37,7 +37,7 @@ static StandardFieldPtr standardField = getStandardField();
static StandardPVFieldPtr standardPVField = getStandardPVField();
static ConvertPtr convert = getConvert();
static void testPVUnion()
static void testPVUnionType()
{
if(debug)
std::cout << std::endl << "testPVUnion" << std::endl;
@@ -115,10 +115,10 @@ static void testPVUnionArray()
}
MAIN(testPVData)
MAIN(testPVUnion)
{
testPlan(6);
testPVUnion();
testPVUnionType();
testPVUnionArray();
return testDone();
}