73c73
< def run_test(root, switcher=None, freq=1000):
---
> def run_test(root, switcher=None, freq=1000, verbose=False):
93a94
> verbose -- Enable output at each switch (suppressed by default).
102a104,108
> # Suppress "Entering event queue" messages since we get tons of them.
> # Worse yet, they include the timestamp, which makes them highly
> # variable and unsuitable for comparing as test outputs.
> m5.internal.core.cvar.want_info = verbose
>
116,117c122,124
< print "Switching CPUs..."
< print "Next CPU: %s" % type(next_cpu)
---
> if verbose:
> print "Switching CPUs..."
> print "Next CPU: %s" % type(next_cpu)
121c128
< do_drain=False)
---
> do_drain=False, verbose=verbose)