summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/thread_joinwait_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/thread_joinwait_test.cpp')
-rw-r--r--fastos/src/tests/thread_joinwait_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fastos/src/tests/thread_joinwait_test.cpp b/fastos/src/tests/thread_joinwait_test.cpp
index 433adf7b38e..758eb204b9f 100644
--- a/fastos/src/tests/thread_joinwait_test.cpp
+++ b/fastos/src/tests/thread_joinwait_test.cpp
@@ -6,7 +6,7 @@
#include "jobs.h"
#include "base_thread.hpp"
-class ThreadTest : public BaseForThreadTest
+class Thread_JoinWait_Test : public BaseForThreadTest
{
int Main ();
@@ -90,7 +90,7 @@ class ThreadTest : public BaseForThreadTest
};
-int ThreadTest::Main ()
+int Thread_JoinWait_Test::Main ()
{
printf("grep for the string '%s' to detect failures.\n\n", failString);
time_t before = time(0);
@@ -117,7 +117,7 @@ int ThreadTest::Main ()
int main (int argc, char **argv)
{
- ThreadTest app;
+ Thread_JoinWait_Test app;
setvbuf(stdout, NULL, _IOLBF, 8192);
return app.Entry(argc, argv);
}