1/*-------------------------------------------------------------------------
2 * drawElements Quality Program Tester Core
3 * ----------------------------------------
4 *
5 * Copyright 2014 The Android Open Source Project
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *      http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 *//*!
20 * \file
21 * \brief Generic main().
22 *//*--------------------------------------------------------------------*/
23
24#include "tcuDefs.hpp"
25#include "tcuCommandLine.hpp"
26#include "tcuPlatform.hpp"
27#include "tcuApp.hpp"
28#include "tcuResource.hpp"
29#include "tcuTestLog.hpp"
30#include "tcuTestSessionExecutor.hpp"
31#include "deUniquePtr.hpp"
32#include "tcuOhosPlatform.hpp"
33
34#include <cstdio>
35
36// Implement this in your platform port.
37tcu::Platform* createPlatform (void);
38
39int main (int argc, char** argv)
40{
41	int exitStatus = EXIT_SUCCESS;
42
43#if (DE_OS != DE_OS_WIN32)
44	// Set stdout to line-buffered mode (will be fully buffered by default if stdout is pipe).
45	setvbuf(stdout, DE_NULL, _IOLBF, 4*1024);
46#endif
47
48	try
49	{
50		tcu::CommandLine				cmdLine		(argc, argv);
51		tcu::DirArchive					archive		(cmdLine.getArchiveDir());
52		tcu::TestLog					log			(cmdLine.getLogFileName(), cmdLine.getLogFlags());
53		de::UniquePtr<tcu::Platform>	platform	(createOhosPlatform());
54		de::UniquePtr<tcu::App>			app			(new tcu::App(*platform, archive, log, cmdLine));
55
56		// Main loop.
57		for (;;)
58		{
59			if (!app->iterate())
60			{
61				if (cmdLine.getRunMode() == tcu::RUNMODE_EXECUTE &&
62					(!app->getResult().isComplete || app->getResult().numFailed))
63				{
64					exitStatus = EXIT_FAILURE;
65				}
66
67				break;
68			}
69		}
70	}
71	catch (const std::exception& e)
72	{
73		tcu::die("%s", e.what());
74	}
75
76	return exitStatus;
77}