Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: icu46/source/test/threadtest/threadtest.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « icu46/source/test/threadtest/stringtest.cpp ('k') | icu46/source/test/threadtest/threadtest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu46/source/test/threadtest/threadtest.h
===================================================================
--- icu46/source/test/threadtest/threadtest.h (revision 0)
+++ icu46/source/test/threadtest/threadtest.h (revision 0)
@@ -0,0 +1,46 @@
+//
+//********************************************************************
+// Copyright (C) 2002, International Business Machines
+// Corporation and others. All Rights Reserved.
+//********************************************************************
+//
+// File threadtest.h
+//
+#ifndef ABSTRACTTHREADTEST_H
+#define ABSTRACTTHREADTEST_H
+//------------------------------------------------------------------------------
+//
+// class AbstractThreadTest Base class for threading tests.
+// Use of this abstract base isolates the part of the
+// program that nows how to spin up and control threads
+// from the specific stuff being tested, and (hopefully)
+// simplifies adding new threading tests for different parts
+// of ICU.
+//
+// Derived classes: A running test will have exactly one instance of a
+// derived class, which will persist for the duration of the
+// test and be shared among all of the threads involved in
+// the test.
+//
+// The constructor will be called in a single-threaded environment,
+// and should set up any data that will need to persist for the
+// duration.
+//
+// runOnce() will be called repeatedly by the working threads of
+// the test in the full multi-threaded environment.
+//
+// check() will be called periodically in a single threaded
+// environment, with the worker threads temporarily suspended between
+// between calls to runOnce(). Do consistency checks here.
+//
+//------------------------------------------------------------------------------
+class AbstractThreadTest {
+public:
+ AbstractThreadTest() {};
+ virtual ~AbstractThreadTest() {};
+ virtual void check() = 0;
+ virtual void runOnce() = 0;
+};
+
+#endif // ABSTRACTTHREADTEST_H
+
Property changes on: icu46/source/test/threadtest/threadtest.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/threadtest/stringtest.cpp ('k') | icu46/source/test/threadtest/threadtest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698