git-svn-id: svn://ultimatepp.org/upp/trunk@8281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2015-03-18 15:04:33 +00:00
parent 6b1c612617
commit 347df62b56
3 changed files with 19 additions and 8 deletions

View file

@ -9,6 +9,7 @@ void AddError(const String& path, int ln, const String& s)
void Test(const char *path)
{
DDUMP(sizeof(CppItem));
Cpp cpp;
cpp.WhenError = callback(AddError);
cpp.path = path;
@ -45,7 +46,9 @@ void Test(const char *path)
CONSOLE_APP_MAIN
{
StdLogSetup(LOG_FILE, NULL, 150000000);
Test("c:/u/upp.src/uppsrc/Core/Cpu.cpp");
// Test(GetDataFile("testfile"));
Test("c:/u/upp.src/uppsrc/CtrlLib/EditField.cpp");
getchar();
return;
}