diff --git a/src/testsuite/test-python_loader.cc b/src/testsuite/test-python_loader.cc index ffbcb17..b91be54 100644 --- a/src/testsuite/test-python_loader.cc +++ b/src/testsuite/test-python_loader.cc @@ -28,7 +28,6 @@ #include "backend/schedulable_list.hh" #include "backend/scheduler.hh" #include "standard_io.hh" -#include "start_gui.hh" #include "text_simulation.hh" #include "templates/smartp.hh" @@ -77,9 +76,6 @@ main(int argc, char** argv) { memory::smart_ptr io(new StandardIO()); text_sim.add_io_device(io); text_sim.update(); - - //grafical IO - - // I didn't add a GraphicalTerminalIO, so why do I get a bloody one?? - start_gui(argc, argv, text_sim); + text_sim.run(); + exit(0); }