diff --git a/src/tests/servers/registrar/Jamfile b/src/tests/servers/registrar/Jamfile new file mode 100644 index 0000000000..b4094d0115 --- /dev/null +++ b/src/tests/servers/registrar/Jamfile @@ -0,0 +1,9 @@ +SubDir OBOS_TOP src tests servers registrar ; + +UsePublicHeaders app ; + +SimpleTest RegistrarTest1 + : RegistrarTest1.cpp + : libopenbeos.so +; + diff --git a/src/tests/servers/registrar/RegistrarTest1.cpp b/src/tests/servers/registrar/RegistrarTest1.cpp new file mode 100644 index 0000000000..0623a82879 --- /dev/null +++ b/src/tests/servers/registrar/RegistrarTest1.cpp @@ -0,0 +1,28 @@ +// RegistrarTest1.cpp + +#include + +#include + +class TestApp : public BApplication { +public: + TestApp(const char *signature) + : BApplication(signature) + { + } + + ~TestApp() + { + } +}; + +// main +int +main() +{ + TestApp *app = new TestApp("application/x-vnd.OBOS-TestApp1"); + app->Run(); + delete app; + return 0; +} +