summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/thread_sleep_test.cpp
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2016-06-30 12:34:15 +0200
committerArne H Juul <arnej@yahoo-inc.com>2016-06-30 12:34:15 +0200
commitc198a637d7659fe481a8b517535e9f6090b95508 (patch)
tree5a1f5209340e3e12b40a43340ad012253d5fb503 /fastos/src/tests/thread_sleep_test.cpp
parent84231cd1e4321779202f5dd2188d505f0b77501e (diff)
ugly but unique class names
Diffstat (limited to 'fastos/src/tests/thread_sleep_test.cpp')
-rw-r--r--fastos/src/tests/thread_sleep_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fastos/src/tests/thread_sleep_test.cpp b/fastos/src/tests/thread_sleep_test.cpp
index 0fe94a81467..4e84d9fef80 100644
--- a/fastos/src/tests/thread_sleep_test.cpp
+++ b/fastos/src/tests/thread_sleep_test.cpp
@@ -6,7 +6,7 @@
#include "jobs.h"
#include "base_thread.hpp"
-class ThreadTest : public BaseForThreadTest
+class Thread_Sleep_Test : public BaseForThreadTest
{
int Main ();
@@ -34,7 +34,7 @@ class ThreadTest : public BaseForThreadTest
}
};
-int ThreadTest::Main ()
+int Thread_Sleep_Test::Main ()
{
printf("grep for the string '%s' to detect failures.\n\n", failString);
time_t before = time(0);
@@ -49,7 +49,7 @@ int ThreadTest::Main ()
int main (int argc, char **argv)
{
- ThreadTest app;
+ Thread_Sleep_Test app;
setvbuf(stdout, NULL, _IOLBF, 8192);
return app.Entry(argc, argv);
}