Add automated tests on function-type FSCommand parameter passing.
[gnash.git] / testsuite / misc-swfmill.all / missing_bitmapTestRunner.cpp
blobfc4fe20134f461a620c2f259ba838b2433d581e5
1 /*
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 * Free Software Foundation, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
22 #define INPUT_FILENAME "missing_bitmap.swf"
24 #include "MovieTester.h"
25 #include "GnashException.h"
26 #include "MovieClip.h"
27 #include "DisplayObject.h"
28 #include "DisplayList.h"
29 #include "log.h"
31 #include "check.h"
32 #include <string>
33 #include <cassert>
35 using namespace gnash;
36 using namespace std;
38 TRYMAIN(_runtest);
39 int
40 trymain(int /*argc*/, char** /*argv*/)
42 string filename = string(TGTDIR) + string("/") + string(INPUT_FILENAME);
43 unique_ptr<MovieTester> t;
45 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
46 dbglogfile.setVerbosity(1);
48 try
50 t.reset(new MovieTester(filename));
52 catch (const GnashException& e)
54 std::cerr << "Error initializing MovieTester: " << e.what() << std::endl;
55 exit(EXIT_FAILURE);
58 MovieTester& tester = *t;
60 // Colors used for pixel checking
61 rgba red(255,0,0,255);
62 rgba white(255,255,255,255);
64 int tol = 15;
67 // See https://savannah.gnu.org/bugs/index.php?32833
68 check_pixel(100, 100, 20, red, tol);
69 check_pixel(300, 100, 20, white, tol);
70 check_pixel(100, 300, 20, white, tol);
72 tester.advance();
74 return 0;