xref: /haiku/src/tests/kits/app/bapplication/testapps/AppQuitTestApp1.cpp (revision d5cd5d63ff0ad395989db6cf4841a64d5b545d1d)
1 // AppQuitTestApp1.cpp
2 
3 #include <stdio.h>
4 
5 #include <OS.h>
6 
7 #include "CommonTestApp.h"
8 
9 int
10 main()
11 {
12 // R5: doesn't set the error variable in case of success
13 #ifdef TEST_R5
14 	status_t error = B_OK;
15 #else
16 	status_t error = B_ERROR;
17 #endif
18 	CommonTestApp *app = new CommonTestApp(
19 		"application/x-vnd.obos-app-quit-testapp1", &error);
20 	init_connection();
21 	report("error: %lx\n", error);
22 	report("InitCheck(): %lx\n", app->InitCheck());
23 	app->SetReportDestruction(true);
24 	app->Quit();
25 	return 0;
26 }
27 
28