fixed newline at end of file errors.
also fixed small include bug in SupportKitTestAddon.cpp. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1232 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
#include "bautolock/AutolockTest.h"
|
#include "bautolock/AutolockTest.h"
|
||||||
#include "blocker/LockerTest.h"
|
#include "blocker/LockerTest.h"
|
||||||
#include "bmemoryio/MemoryIOTest.h"
|
#include "bmemoryio/MemoryIOTest.h"
|
||||||
#include "bmallocio/MallocIOTest.h"
|
#include "bmemoryio/MallocIOTest.h"
|
||||||
|
|
||||||
BTestSuite* getTestSuite() {
|
BTestSuite* getTestSuite() {
|
||||||
BTestSuite *suite = new BTestSuite("Support");
|
BTestSuite *suite = new BTestSuite("Support");
|
||||||
|
|||||||
@@ -50,4 +50,4 @@ CppUnit::Test *ConstTest::suite(void)
|
|||||||
ConstTestCaller;
|
ConstTestCaller;
|
||||||
|
|
||||||
return(new ConstTestCaller("BMemoryIO::Const Test", &ConstTest::PerformTest));
|
return(new ConstTestCaller("BMemoryIO::Const Test", &ConstTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~ConstTest();
|
virtual ~ConstTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -48,4 +48,4 @@ CppUnit::Test *MallocBufferLengthTest::suite(void)
|
|||||||
MallocBufferLengthTestCaller;
|
MallocBufferLengthTestCaller;
|
||||||
|
|
||||||
return(new MallocBufferLengthTestCaller("BMallocIO::BufferLength Test", &MallocBufferLengthTest::PerformTest));
|
return(new MallocBufferLengthTestCaller("BMallocIO::BufferLength Test", &MallocBufferLengthTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~MallocBufferLengthTest();
|
virtual ~MallocBufferLengthTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -53,4 +53,4 @@ CppUnit::Test *MallocSeekTest::suite(void)
|
|||||||
MallocSeekTestCaller;
|
MallocSeekTestCaller;
|
||||||
|
|
||||||
return(new MallocSeekTestCaller("BMallocIO::Seek Test", &MallocSeekTest::PerformTest));
|
return(new MallocSeekTestCaller("BMallocIO::Seek Test", &MallocSeekTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~MallocSeekTest();
|
virtual ~MallocSeekTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -45,4 +45,4 @@ CppUnit::Test *MallocWriteTest::suite(void)
|
|||||||
MallocWriteTestCaller;
|
MallocWriteTestCaller;
|
||||||
|
|
||||||
return(new MallocWriteTestCaller("BMallocIO::Write Test", &MallocWriteTest::PerformTest));
|
return(new MallocWriteTestCaller("BMallocIO::Write Test", &MallocWriteTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~MallocWriteTest();
|
virtual ~MallocWriteTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -56,4 +56,4 @@ CppUnit::Test *ReadTest::suite(void)
|
|||||||
ReadTestCaller;
|
ReadTestCaller;
|
||||||
|
|
||||||
return(new ReadTestCaller("BMemoryIO::Read Test", &ReadTest::PerformTest));
|
return(new ReadTestCaller("BMemoryIO::Read Test", &ReadTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~ReadTest();
|
virtual ~ReadTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -50,4 +50,4 @@ CppUnit::Test *SeekTest::suite(void)
|
|||||||
SeekTestCaller;
|
SeekTestCaller;
|
||||||
|
|
||||||
return(new SeekTestCaller("BMemoryIO::Seek Test", &SeekTest::PerformTest));
|
return(new SeekTestCaller("BMemoryIO::Seek Test", &SeekTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~SeekTest();
|
virtual ~SeekTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -57,4 +57,4 @@ CppUnit::Test *SetSizeTest::suite(void)
|
|||||||
SetSizeTestCaller;
|
SetSizeTestCaller;
|
||||||
|
|
||||||
return(new SetSizeTestCaller("BMemoryIO::SetSize Test", &SetSizeTest::PerformTest));
|
return(new SetSizeTestCaller("BMemoryIO::SetSize Test", &SetSizeTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~SetSizeTest();
|
virtual ~SetSizeTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -64,4 +64,4 @@ CppUnit::Test *WriteTest::suite(void)
|
|||||||
WriteTestCaller;
|
WriteTestCaller;
|
||||||
|
|
||||||
return(new WriteTestCaller("BMemoryIO::Write Test", &WriteTest::PerformTest));
|
return(new WriteTestCaller("BMemoryIO::Write Test", &WriteTest::PerformTest));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,4 +19,4 @@ public:
|
|||||||
virtual ~WriteTest();
|
virtual ~WriteTest();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user