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