summaryrefslogtreecommitdiffstats
path: root/fastos/src/tests/filetest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fastos/src/tests/filetest.cpp')
-rw-r--r--fastos/src/tests/filetest.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/fastos/src/tests/filetest.cpp b/fastos/src/tests/filetest.cpp
index c967fc4caff..dcd1b224464 100644
--- a/fastos/src/tests/filetest.cpp
+++ b/fastos/src/tests/filetest.cpp
@@ -817,8 +817,14 @@ public:
return allWasOk() ? 0 : 1;
}
+ FileTest();
+ ~FileTest();
};
+FileTest::FileTest() { }
+FileTest::~FileTest() { }
+
+
int main (int argc, char **argv)
{
FileTest app;