From b2624f8ae9cd470d17a8e7d09a6d373dcc280587 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Fri, 9 Jan 2009 07:51:42 +0100 Subject: [PATCH] handle calendar scheduler in bench --- utils/bench-simulator.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/bench-simulator.cc b/utils/bench-simulator.cc index 1c096b113..75eeda668 100644 --- a/utils/bench-simulator.cc +++ b/utils/bench-simulator.cc @@ -168,6 +168,10 @@ int main (int argc, char *argv[]) { Simulator::SetScheduler (CreateObject ()); } + else if (strcmp ("--calendar", argv[0]) == 0) + { + Simulator::SetScheduler (CreateObject ()); + } else if (strcmp ("--debug", argv[0]) == 0) { g_debug = true;