Merge "x11: Fix deadlock" into nougat-cts-dev am: 34b869eeea
[platform/upstream/VK-GL-CTS.git] / framework / common / tcuTestContext.hpp
index 3aa474d..2bf4ed3 100644 (file)
@@ -69,7 +69,11 @@ public:
 
        void                                    setTerminateAfter       (bool terminate)        { m_terminateAfter = terminate; }
        bool                                    getTerminateAfter       (void) const            { return m_terminateAfter;              }
+
 protected:
+                                                       TestContext                     (const TestContext&);
+       TestContext&                    operator=                       (const TestContext&);
+
        Platform&                               m_platform;                     //!< Platform port implementation.
        Archive&                                m_rootArchive;          //!< Root archive.
        TestLog&                                m_log;                          //!< Test log.
@@ -82,7 +86,6 @@ protected:
        bool                                    m_terminateAfter;       //!< Should tester terminate after execution of the current test
 };
 
-
 } // tcu
 
 #endif // _TCUTESTCONTEXT_HPP