aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test (unfollow)
Commit message (Collapse)Author
2020-01-13work around clang-format oddityEgor Tensin
2020-01-06test: add a comment for the benchmarksEgor Tensin
2020-01-06lexer: std:: vs boost:: for whitespace parsingEgor Tensin
Added the corresponding benchmarks too.
2020-01-03lexer: add alternative boost::regex implementationsEgor Tensin
2020-01-03add a basic benchmark for lexerEgor Tensin
I suspect std::regex is _horribly_ slow. Will compare it to boost::regex, then decide.
2020-01-03lexer: split out testing-exposed functionsEgor Tensin
2020-01-01test: add more parser testsEgor Tensin
2019-12-31parser: support unary +Egor Tensin
2019-12-31support the power (^) operatorEgor Tensin
It doesn't work with the unary minus currently (as is reflected in the tests), it should have a higher precedence.
2019-12-22add licensing notes to source filesEgor Tensin
2019-12-21cmake: use Boost::* targetsEgor Tensin
2019-12-21cmake: install() PDB filesEgor Tensin
2019-12-13stress_test.py: check all outputs equalEgor Tensin
2019-12-13stress_test.py: fix for 3.6Egor Tensin
2019-12-13rename executablesEgor Tensin
2019-12-12stress_test.py: call check_returncode()Egor Tensin
2019-12-10bin/unit_tests -> bin/test/unit_testsEgor Tensin
2019-12-09use CMake's install() for predictable pathsEgor Tensin
This will allow to merge the scripts for the two CIs in the future, hopefully.
2019-12-08fix CMakeLists.txt for Visual Studio 2019Egor Tensin
It does work w/ gcc, but for Visual Studio 2019, it * tries to link client.exe and server.exe with Boost.DateTime and Boost.Regex, * doesn't link with unit_test_framework automatically, which is expected (I dunno why it works with gcc).
2019-12-07split server into multiple componentsEgor Tensin
In a vague attempt to make header files more readable, split server/ into a number of components. Also, refactor the unit tests to use the "Data-driven test cases" of Boost.Test.
2019-12-01add stress_test.pyEgor Tensin