fix Travis CI unittest

This commit is contained in:
Vadim Lopatin 2016-06-29 13:08:23 +03:00
parent bc7041530d
commit 0cdd6a9216
2 changed files with 19 additions and 18 deletions

View File

@ -68,31 +68,32 @@ extern (C) int UIAppMain(string[] args) {
//}
version(unittest) {
return 0;
}
} else {
// create window
Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 900, 730);
// set window icon
window.windowIcon = drawableCache.getImage("dlangui-logo1");
// create window
Window window = Platform.instance.createWindow("Dlang IDE", null, WindowFlag.Resizable, 900, 730);
// set window icon
window.windowIcon = drawableCache.getImage("dlangui-logo1");
//Widget w = new Widget();
//pragma(msg, w.click.return_t, "", w.click.params_t);
//Widget w = new Widget();
//pragma(msg, w.click.return_t, "", w.click.params_t);
IDEFrame frame = new IDEFrame(window);
IDEFrame frame = new IDEFrame(window);
// open home screen tab
frame.showHomeScreen();
// for testing: load workspace at startup
//frame.openFileOrWorkspace(appendPath(exePath, "../workspaces/sample1/sample1.dlangidews"));
// open home screen tab
frame.showHomeScreen();
// for testing: load workspace at startup
//frame.openFileOrWorkspace(appendPath(exePath, "../workspaces/sample1/sample1.dlangidews"));
// show window
window.show();
// show window
window.show();
//jsonTest();
//jsonTest();
// run message loop
return Platform.instance.enterMessageLoop();
// run message loop
return Platform.instance.enterMessageLoop();
}
}
/*

View File

@ -46,7 +46,7 @@ import std.path;
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
// TODO: get version from GIT commit
immutable dstring DLANGIDE_VERSION = "v0.6.15"d;
immutable dstring DLANGIDE_VERSION = "v0.6.17"d;
bool isSupportedSourceTextFileFormat(string filename) {
return (filename.endsWith(".d") || filename.endsWith(".txt") || filename.endsWith(".cpp") || filename.endsWith(".h") || filename.endsWith(".c")