aboutsummaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/tests.h
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/tests.h')
-rw-r--r--fastos/src/tests/tests.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/fastos/src/tests/tests.h b/fastos/src/tests/tests.h
index 3a6f2ef9010..9cd7a10ab48 100644
--- a/fastos/src/tests/tests.h
+++ b/fastos/src/tests/tests.h
@@ -1,8 +1,9 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/thread.h>
#include <cstring>
#include <csignal>
+#include <cstdio>
+#include <cstdint>
class BaseTest
{
@@ -83,13 +84,6 @@ public:
return Progress(result, string);
}
- bool Progress (bool result, const char *str, const FastOS_ThreadInterface *s1)
- {
- char string[MAX_STR_LEN-100];
- snprintf(string, sizeof(string), str, s1);
- return Progress(result, string);
- }
-
bool Progress (bool result, const char *str, const char *s1, const char *s2)
{
char string[MAX_STR_LEN-100];