* Bring back rbuild build to be used until bug 6372 is fixed.
[reactos.git] / tools / rbuild / tests / definetest.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 DefineTest::Run()
23 {
24 string projectFilename ( RBUILD_BASE "tests/data/define.xml" );
25 Configuration configuration;
26 Project project ( configuration, projectFilename );
27 ARE_EQUAL(1, project.non_if_data.defines.size());
28 Define& define1 = *project.non_if_data.defines[0];
29 ARE_EQUAL("define1", define1.name);
30 ARE_EQUAL("value1", define1.value);
31
32 ARE_EQUAL(1, project.modules.size());
33 Module& module1 = *project.modules[0];
34
35 ARE_EQUAL(1, module1.non_if_data.defines.size());
36 Define& define2 = *module1.non_if_data.defines[0];
37 ARE_EQUAL("define2", define2.name);
38 ARE_EQUAL("value2", define2.value);
39 }