summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/thread_sleep_test.cpp
diff options
context:
space:
mode:
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);
}