Update Mac build info, add better-working test system, merge duplicate html & php languages
This commit is contained in:
parent
d08e344744
commit
f5022077f6
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,4 +9,5 @@ nbproject/*
|
||||
.idea/*
|
||||
config/*_json.h
|
||||
config/json2c
|
||||
**/*.exe
|
||||
**/*.exe
|
||||
tests/runner
|
15
.travis.yml
15
.travis.yml
@ -1,10 +1,6 @@
|
||||
language: cpp
|
||||
|
||||
before_install:
|
||||
# Setup virtual x server for gui testing
|
||||
- export DISPLAY=:99.0
|
||||
- sh -e /etc/init.d/xvfb start
|
||||
|
||||
before_install:
|
||||
# Define TRAVIS variable for workarounds
|
||||
- export CXXFLAGS="$CXXFLAGS -DTRAVIS"
|
||||
|
||||
@ -14,13 +10,6 @@ before_install:
|
||||
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
||||
- if [ "$CXX" = "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 98; fi
|
||||
|
||||
# Setup cpputest
|
||||
#- git clone git://github.com/cpputest/cpputest.git
|
||||
#- cd cpputest/cpputest_build
|
||||
#- cmake ..
|
||||
#- make && sudo make install
|
||||
#- cd ../../
|
||||
|
||||
# Install dependencies
|
||||
- sudo apt-get -qq install libwxgtk3.0-dev libwxgtk3.0-0 libssh2-1-dev
|
||||
|
||||
@ -29,4 +18,4 @@ compiler:
|
||||
- gcc
|
||||
- clang
|
||||
|
||||
script: make clean dev
|
||||
script: make clean run-tests
|
||||
|
@ -5,21 +5,22 @@ Use [this script](http://devernay.free.fr/hacks/xcodelegacy/) to install older S
|
||||
|
||||
## Additional configure flags for compiling wxWidgets
|
||||
### Building on 10.8 or newer
|
||||
* --with-macosx-version-min=10.5
|
||||
* --with-macosx-sdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.5.sdk
|
||||
* --with-macosx-version-min=10.7
|
||||
* --with-macosx-sdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
|
||||
|
||||
### Building on 10.5 to 10.7
|
||||
* --with-macosx-version-min=10.5
|
||||
* --with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk
|
||||
### Building on 10.7
|
||||
* --with-macosx-version-min=10.7
|
||||
* --with-macosx-sdk=/Developer/SDKs/MacOSX10.7.sdk
|
||||
|
||||
|
||||
## Recommended flags for development/debugging (Assuming OS X > 10.7)
|
||||
* --enable-debug
|
||||
* --enable-debug_gdb
|
||||
* --enable-profile
|
||||
* --disable-compat28
|
||||
* --disable-shared
|
||||
* --without-liblzma
|
||||
* --without-webviewwebkit
|
||||
* --with-macosx-version-min=10.5
|
||||
* --with-macosx-sdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.5.sdk
|
||||
* --with-macosx-version-min=10.7
|
||||
* --with-macosx-sdk=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
|
||||
|
||||
|
8
Makefile
8
Makefile
@ -38,7 +38,7 @@ endif
|
||||
|
||||
# Platform compiler flags
|
||||
ifeq ($(OS),Darwin)
|
||||
CXX = $(shell wx-config --cxx) -D__WXMAC__ -std=gnu++11
|
||||
CXX = $(shell wx-config --cxx) -D__WXMAC__ -D_WCHAR_H_CPLUSPLUS_98_CONFORMANCE_ -std=gnu++11
|
||||
LDLIBS += /usr/local/lib/libssh2.a
|
||||
else
|
||||
LDLIBS += -lssh2
|
||||
@ -157,13 +157,13 @@ $(TESTS):
|
||||
$(foreach var, $(TEST_SRC), $(CXX) $(CXXFLAGS) $(WX_CXXFLAGS) -c -o $(patsubst %.cpp,%.o,$(var)) $(var);)
|
||||
|
||||
.PHONY: tests
|
||||
tests: LDLIBS += -lstdc++ -lCppUTestExt -lCppUTest
|
||||
tests: $(TESTS) json_wrapper $(BASE_LIB) $(WIDGET_LIB)
|
||||
$(patsubst g++,clang++, $(CXX)) $(CXXFLAGS) $(WX_CXXFLAGS) tests/main.cpp $(TESTS) $(WIDGET_LIB) $(BASE_LIB) $(WX_LDLIBS) $(LDLIBS) -o tests/runner
|
||||
$(CXX) $(CXXFLAGS) $(WX_CXXFLAGS) tests/main.cpp $(TESTS) $(WIDGET_LIB) $(BASE_LIB) $(WX_LDLIBS) $(LDLIBS) -o tests/runner
|
||||
|
||||
|
||||
run-tests: tests
|
||||
./tests/runner -v
|
||||
./tests/runner -s
|
||||
./tests/runner -r compact
|
||||
|
||||
clean:
|
||||
rm -f *.res
|
||||
|
@ -35,10 +35,11 @@ If you want maximum compatibility with older versions of OS X,
|
||||
view [the guide](./Mac-compatibility-build.md). Otherwise, these simpler
|
||||
steps should work fine for a local build.
|
||||
|
||||
1. Download the latest wxWidgets source
|
||||
2. Make a new directory in the source tree, like `wxmac`
|
||||
3. Run `../configure --disable-shared --disable-webviewwebkit --disable-compat28` in the new directory
|
||||
4. Run `make && make install`
|
||||
1. Download the latest wxWidgets source (>= 3.0.2)
|
||||
2. Run `export CXX="clang++ -std=c++11 -stdlib=libc++"` to compile with clang for better C++11 support
|
||||
3. Make a new directory in the source tree, like `wxmac`
|
||||
4. Run `../configure --disable-shared --disable-webviewwebkit --disable-compat28` in the new directory
|
||||
5. Run `make && make install`
|
||||
|
||||
Install libssh2 (Using homebrew):
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -133,7 +133,6 @@ private:
|
||||
Glob_lexer_map["css"] = wxSTC_LEX_CSS;
|
||||
Glob_lexer_map["fortran"] = wxSTC_LEX_FORTRAN;
|
||||
Glob_lexer_map["haskell"] = wxSTC_LEX_HASKELL;
|
||||
Glob_lexer_map["html"] = wxSTC_LEX_HTML;
|
||||
Glob_lexer_map["java"] = wxSTC_LEX_CPP;
|
||||
Glob_lexer_map["js"] = wxSTC_LEX_CPP;
|
||||
Glob_lexer_map["lisp"] = wxSTC_LEX_LISP;
|
||||
|
@ -23,7 +23,7 @@ public:
|
||||
void ApplyTheme(string lang, string theme="");
|
||||
string GetCurrentLang();
|
||||
void SetCurrentLang(string name);
|
||||
private:
|
||||
protected:
|
||||
StringConstMap::iterator lexerMapIt;
|
||||
LangConfig *lang_config = nullptr;
|
||||
ThemeConfig *theme_config = nullptr;
|
||||
|
@ -1,23 +1,13 @@
|
||||
#include <CppUTest/TestHarness.h>
|
||||
#include "catch.hpp"
|
||||
#include "../src/base/settings/Config.h"
|
||||
|
||||
TEST_GROUP(Config)
|
||||
TEST_CASE ("Base config class load json")
|
||||
{
|
||||
TyroConfig *config;
|
||||
TyroConfig *config = new TyroConfig();
|
||||
|
||||
void setup()
|
||||
SECTION("Create Base Config Class")
|
||||
{
|
||||
config = new TyroConfig();
|
||||
config->LoadJson("{\"foo\":\"bar\"}");
|
||||
REQUIRE(config->GetRoot().isObject());
|
||||
}
|
||||
void teardown()
|
||||
{
|
||||
delete config;
|
||||
}
|
||||
};
|
||||
|
||||
TEST(Config, Create)
|
||||
{
|
||||
config->LoadJson("{\"foo\":\"bar\"}");
|
||||
|
||||
CHECK(config->GetRoot().isObject());
|
||||
}
|
||||
}
|
||||
|
@ -1,51 +1,56 @@
|
||||
|
||||
#include <CppUTest/TestHarness.h>
|
||||
#include "catch.hpp"
|
||||
#include "../src/settings/LangConfig.h"
|
||||
TEST_GROUP(LangConfig)
|
||||
|
||||
TEST_CASE("Language Config Library")
|
||||
{
|
||||
LangConfig *config;
|
||||
LangConfig *config = new LangConfig();
|
||||
|
||||
void setup()
|
||||
SECTION("GetLangList()")
|
||||
{
|
||||
config = new LangConfig();
|
||||
StringMap list = config->GetLangList();
|
||||
REQUIRE(list.size() > 0);
|
||||
}
|
||||
void teardown()
|
||||
|
||||
SECTION("GetLang()")
|
||||
{
|
||||
delete config;
|
||||
string lang = config->GetLang();
|
||||
REQUIRE(lang == "");
|
||||
}
|
||||
};
|
||||
|
||||
TEST(LangConfig, GetLangList)
|
||||
{
|
||||
StringMap list = config->GetLangList();
|
||||
CHECK(list.size() > 0);
|
||||
}
|
||||
|
||||
TEST(LangConfig, GetLang)
|
||||
{
|
||||
string lang;
|
||||
lang = config->GetLang();
|
||||
CHECK_EQUAL(lang, "");
|
||||
}
|
||||
|
||||
TEST(LangConfig, SetLang)
|
||||
{
|
||||
string lang="cpp";
|
||||
config->SetLang(lang);
|
||||
|
||||
CHECK_EQUAL(lang, config->GetLang());
|
||||
}
|
||||
|
||||
TEST(LangConfig, GetLangByFile)
|
||||
{
|
||||
wxFileName file("foo.cpp");
|
||||
SECTION("SetLang()")
|
||||
{
|
||||
string lang="cpp";
|
||||
config->SetLang(lang);
|
||||
REQUIRE(lang == config->GetLang());
|
||||
}
|
||||
|
||||
string lang = config->GetLangByFile(file);
|
||||
CHECK_EQUAL("cpp", lang);
|
||||
SECTION("GetLangByFile()")
|
||||
{
|
||||
wxFileName file("foo.cpp");
|
||||
|
||||
string lang = config->GetLangByFile(file);
|
||||
REQUIRE("cpp" == lang);
|
||||
}
|
||||
|
||||
SECTION("GetLangByName()")
|
||||
{
|
||||
string lang = config->GetLangByName("C / C++");
|
||||
REQUIRE("cpp" == lang);
|
||||
}
|
||||
|
||||
SECTION("GetCurrentLangName()")
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
SECTION("GetLexerMap()")
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
SECTION("GetKeywordList()")
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
TEST(LangConfig, GetLangByName)
|
||||
{
|
||||
string lang = config->GetLangByName("C / C++");
|
||||
CHECK_EQUAL("cpp", lang);
|
||||
}
|
9427
tests/catch.hpp
Normal file
9427
tests/catch.hpp
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,2 @@
|
||||
#include <CppUTest/CommandLineTestRunner.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
MemoryLeakWarningPlugin::turnOffNewDeleteOverloads();
|
||||
return CommandLineTestRunner::RunAllTests(argc, argv);
|
||||
}
|
||||
|
||||
IMPORT_TEST_GROUP(Config);
|
||||
IMPORT_TEST_GROUP(LangConfig);
|
||||
#define CATCH_CONFIG_MAIN
|
||||
#include "catch.hpp"
|
Loading…
Reference in New Issue
Block a user