// src/testsuite/test-python_loader.cc - Copyright 2005, 2006, University // of Padova, dept. of Pure and Applied // Mathematics // // This file is part of SGPEMv2. // // This is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // SGPEMv2 is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with SGPEMv2; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA /* This executable tests for workingness of the PythonPolicyManager * class and its closely related cousins. More documentation to be written * here, thanks very much. */ #include "backend/pyloader/python_policy_manager.hh" #include "backend/pyloader/python_policy.hh" #include "backend/global_settings.hh" #include "backend/schedulable_list.hh" #include "backend/scheduler.hh" #include "backend/user_interrupt_exception.hh" #include "templates/smartp.hh" #include #include #include #include #include // FIXME: Eeeeh? Why does this work without explicit namespace resolving? // Is there some using declaration in included HEADERS?? Aaaaagh! class TestPythonPolicyManager : public PythonPolicyManager { public: void test_init(const char* policy_name) { init(); _python_policy = std::auto_ptr(new PythonPolicy(policy_name)); } }; int main(int argc, char** argv) { using namespace sgpem; using namespace std; if(argc != 2) { std::cout << "[EE] Usage:\n\t" << argv[0] << " path/to/uninstalled/policies" << std::endl; exit(-1); } else // Add argv[1] as the directory to search for uninstalled policies sgpem::GlobalSettings::instance().add_policies_dir(argv[1]); // Self-register itself to Scheduler, however we don't care about it TestPythonPolicyManager polman; try { polman.test_init("python_loader_configure"); polman.get_policy().configure(); } catch(UserInterruptException e) { cout << "configure: Caught UserInterruptException" << endl; } try { polman.test_init("python_loader_is_preemptive"); polman.get_policy().is_pre_emptive(); } catch(UserInterruptException e) { cout << "is_preemptive: Caught UserInterruptException" << endl; } try { polman.test_init("python_loader_get_time_slice"); polman.get_policy().get_time_slice(); } catch(UserInterruptException e) { cout << "get_time_slice: Caught UserInterruptException" << endl; } try { SchedulableList sl; polman.test_init("python_loader_sort_queue"); polman.get_policy().sort_queue(Scheduler::event_schedulable_arrival); } catch(UserInterruptException e) { cout << "sort_queue: Caught UserInterruptException" << endl; } exit(0); }