| Index: systrace/profile_chrome/atrace_tracing_agent_unittest.py
|
| diff --git a/systrace/profile_chrome/atrace_tracing_agent_unittest.py b/systrace/profile_chrome/atrace_tracing_agent_unittest.py
|
| index dbeb465c7a4541743fbc93cfdec10608207511e1..24f3c7e3d746050f438d1bdac355b7bcc914ba57 100644
|
| --- a/systrace/profile_chrome/atrace_tracing_agent_unittest.py
|
| +++ b/systrace/profile_chrome/atrace_tracing_agent_unittest.py
|
| @@ -4,15 +4,21 @@
|
|
|
| from profile_chrome import agents_unittest
|
| from profile_chrome import atrace_tracing_agent
|
| +from systrace import decorators
|
|
|
|
|
| class AtraceAgentTest(agents_unittest.BaseAgentTest):
|
| + @decorators.ClientOnlyTest
|
| def testGetCategories(self):
|
| categories = \
|
| atrace_tracing_agent.AtraceAgent.GetCategories(self.device)
|
| self.assertTrue(categories)
|
| assert 'gfx' in ' '.join(categories)
|
|
|
| + # TODO(washingtonp): This test throws an error on the Trybot servers when
|
| + # running profile_chrome's atrace agent. Once systrace uses profile_chrome's
|
| + # agent instead, this test may not longer need to be disabled.
|
| + @decorators.Disabled
|
| def testTracing(self):
|
| categories = 'gfx,input,view'
|
| ring_buffer = False
|
|
|