aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test (follow)
Commit message (Collapse)AuthorAge
* clang-format all the codeEgor Tensin2020-01-13
|
* work around clang-format oddityEgor Tensin2020-01-13
|
* test: add a comment for the benchmarksEgor Tensin2020-01-06
|
* lexer: std:: vs boost:: for whitespace parsingEgor Tensin2020-01-06
| | | | Added the corresponding benchmarks too.
* lexer: add alternative boost::regex implementationsEgor Tensin2020-01-03
|
* add a basic benchmark for lexerEgor Tensin2020-01-03
| | | | | I suspect std::regex is _horribly_ slow. Will compare it to boost::regex, then decide.
* lexer: split out testing-exposed functionsEgor Tensin2020-01-03
|
* test: add more parser testsEgor Tensin2020-01-01
|
* parser: support unary +Egor Tensin2019-12-31
|
* support the power (^) operatorEgor Tensin2019-12-31
| | | | | It doesn't work with the unary minus currently (as is reflected in the tests), it should have a higher precedence.
* add licensing notes to source filesEgor Tensin2019-12-22
|
* cmake: use Boost::* targetsEgor Tensin2019-12-21
|
* cmake: install() PDB filesEgor Tensin2019-12-21
|
* stress_test.py: check all outputs equalEgor Tensin2019-12-13
|
* stress_test.py: fix for 3.6Egor Tensin2019-12-13
|
* rename executablesEgor Tensin2019-12-13
|
* stress_test.py: call check_returncode()Egor Tensin2019-12-12
|
* bin/unit_tests -> bin/test/unit_testsEgor Tensin2019-12-10
|
* use CMake's install() for predictable pathsEgor Tensin2019-12-09
| | | | | This will allow to merge the scripts for the two CIs in the future, hopefully.
* fix CMakeLists.txt for Visual Studio 2019Egor Tensin2019-12-08
| | | | | | | | 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).
* split server into multiple componentsEgor Tensin2019-12-07
| | | | | | | 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.
* add stress_test.pyEgor Tensin2019-12-01
|
* initial commitEgor Tensin2019-12-01