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
33#include <cstdio>
34
35// Implement this in your platform port.
36tcu::Platform* createPlatform (void);
37
38int main (int argc, char** argv)
39{
40	int exitStatus = EXIT_SUCCESS;
41
42#if (DE_OS != DE_OS_WIN32)
43	// Set stdout to line-buffered mode (will be fully buffered by default if stdout is pipe).
44	setvbuf(stdout, DE_NULL, _IOLBF, 4*1024);
45#endif
46
47	try
48	{
49		tcu::CommandLine				cmdLine		(argc, argv);
50		tcu::DirArchive					archive		(cmdLine.getArchiveDir());
51		tcu::TestLog					log			(cmdLine.getLogFileName(), cmdLine.getLogFlags());
52		de::UniquePtr<tcu::Platform>	platform	(createPlatform());
53		de::UniquePtr<tcu::App>			app			(new tcu::App(*platform, archive, log, cmdLine));
54
55		// Main loop.
56		for (;;)
57		{
58			if (!app->iterate())
59			{
60				if (cmdLine.getRunMode() == tcu::RUNMODE_EXECUTE &&
61					(!app->getResult().isComplete || app->getResult().numFailed))
62				{
63					exitStatus = EXIT_FAILURE;
64				}
65
66				break;
67			}
68		}
69	}
70	catch (const std::exception& e)
71	{
72		tcu::die("%s", e.what());
73	}
74
75	return exitStatus;
76}
77