* Bring back rbuild build to be used until bug 6372 is fixed.
[reactos.git] / tools / rbuild / tests / compilationunittest.cpp
1 /*
2 * Copyright (C) 2005 Casper S. Hornstrup
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18 #include "test.h"
19
20 using std::string;
21
22 void CompilationUnitTest::Run()
23 {
24 string projectFilename ( RBUILD_BASE "tests/data/compilationunit.xml" );
25 Configuration configuration;
26 Project project ( configuration, projectFilename );
27 ARE_EQUAL ( 1, project.modules.size () );
28
29 Module& module1 = *project.modules[0];
30 IS_TRUE ( module1.type == BuildTool );
31
32 ARE_EQUAL ( 3, module1.non_if_data.files.size());
33 ARE_EQUAL ( "dir1" SSEP "file1.c", module1.non_if_data.files[0]->name );
34 ARE_EQUAL ( "dir1" SSEP "file2.c", module1.non_if_data.files[1]->name );
35 ARE_EQUAL ( "dir1" SSEP "file3.c", module1.non_if_data.files[2]->name );
36
37 ARE_EQUAL ( 2, module1.non_if_data.compilationUnits.size () );
38
39 CompilationUnit& compilationUnit1 = *module1.non_if_data.compilationUnits[0];
40 ARE_EQUAL ( 2, compilationUnit1.files.size () );
41
42 ARE_EQUAL ( "dir1" SSEP "file1.c", compilationUnit1.files[0]->name );
43 ARE_EQUAL ( "dir1" SSEP "file2.c", compilationUnit1.files[1]->name );
44
45 CompilationUnit& compilationUnit2 = *module1.non_if_data.compilationUnits[1];
46 ARE_EQUAL ( 1, compilationUnit2.files.size () );
47
48 ARE_EQUAL ( "dir1" SSEP "file3.c", compilationUnit2.files[0]->name );
49 }