- Update address of Free Software Foundation.
[reactos.git] / reactos / tools / rbuild / tests / symboltest.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 SymbolTest::Run()
23 {
24 string projectFilename ( RBUILD_BASE "tests/data/symbol.xml" );
25 Configuration configuration;
26 Project project ( configuration, projectFilename );
27
28 ARE_EQUAL ( 1, project.modules.size () );
29 Module& module1 = *project.modules[0];
30
31 ARE_EQUAL ( 1, module1.stubbedComponents.size () );
32 StubbedComponent& component1 = *module1.stubbedComponents[0];
33 ARE_EQUAL ( "ntdll.dll", component1.name );
34
35 ARE_EQUAL ( 2, component1.symbols.size () );
36 StubbedSymbol& symbol1 = *component1.symbols[0];
37 ARE_EQUAL ( "HeapAlloc@12", symbol1.symbol );
38 ARE_EQUAL ( "RtlAllocateHeap", symbol1.newname );
39
40 StubbedSymbol& symbol2 = *component1.symbols[1];
41 ARE_EQUAL ( "LdrAccessResource@16", symbol2.symbol );
42 ARE_EQUAL ( "LdrAccessResource", symbol2.newname );
43 }