[Test] Fix failure of cxx_ex test when debug_verbose=y

Partially addresses Issue 69.
This commit is contained in:
Ray Speth 2013-06-28 21:24:30 +00:00
parent 52997d6f60
commit 966ebfa9ff
3 changed files with 3 additions and 0 deletions

View file

@ -75,6 +75,7 @@ int kinetics_example1(int job)
// create a container object to run the simulation
// and add the reactor to it
ReactorNet* sim_ptr = new ReactorNet();
sim_ptr->setVerbose(false);
sim_ptr->addReactor(&r);
double tm;

View file

@ -65,6 +65,7 @@ int kinetics_example2(int job)
// and add the reactor to it
ReactorNet* sim_ptr = new ReactorNet();
ReactorNet& sim = *sim_ptr;
sim.setVerbose(false);
sim.addReactor(&r);
double tm;

View file

@ -72,6 +72,7 @@ int kinetics_example3(int job)
// create a container object to run the simulation
// and add the reactor to it
ReactorNet& sim = *(new ReactorNet());
sim.setVerbose(false);
sim.addReactor(&r);
double tm;