CHECK_LIBXML
-
fi
# --- end test corba
# ----------------------------------------------------------------------------
check_fatal_error $basic_mandatory_products
echo
-corba_mandatory_products="omniORB_ok boost_ok"
+corba_mandatory_products="omniORB_ok boost_ok libxml_ok"
if test x$corba_gen = xtrue; then
echo --- CORBA mandatory products - default configuration:
summary $corba_mandatory_products
Engines::Component_ptr compo;
bool error = false;
bool bestImplemented;
+ int status;
// Initializing omniORB
ORB_INIT &init = *SINGLETON_<ORB_INIT>::Instance() ;
}
}
}
- if( ((cmax-cmin) <= 1) && (fmax == 10/nbpmax) && !error ){
- string msg;
+ string msg;
+ if( ((cmax-cmin) <= 2) && (fmax == 10/nbpmax) && !error ){
if(bestImplemented)
msg = "TEST OK";
else
msg = "TEST OK but FindBest not implemented!";
- MESSAGE(msg);
- return 0;
+ status=0;
}
else{
- MESSAGE("TEST KO");
- return 1;
+ msg ="TEST KO";
+ status=1;
}
+ cout << msg << endl;
+
+ return status;
}