diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2012-06-27 16:26:04 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-07-12 15:10:42 +1000 |
commit | cf9c6a9f588390869f278e5620ec40bfa2859d6a (patch) | |
tree | a8efb8b1e1910aa1a2bb0e5f92e6a9f4019a1078 /include | |
parent | 59de5d4fe1093c3ce276bfad525eb64fc3c087dd (diff) |
xserver: move testing startup to the XServer object
No real functional changes, TestStartup() is called by XServer::Start()
before the process is started, so from the Environment's POV, everything
stays the same.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xorg/gtest/xorg-gtest-xserver.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xorg/gtest/xorg-gtest-xserver.h b/include/xorg/gtest/xorg-gtest-xserver.h index 59cc680..81c9f74 100644 --- a/include/xorg/gtest/xorg-gtest-xserver.h +++ b/include/xorg/gtest/xorg-gtest-xserver.h @@ -151,6 +151,8 @@ class XServer : public xorg::testing::Process { XServer(const XServer&); XServer& operator=(const XServer&); + void TestStartup(void); + }; } // namespace testing } // namespace xorg |