aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test (follow)
Commit message (Collapse)AuthorAge
* stress_test.py: fix randint usageEgor Tensin2023-11-05
| | | | | | Prior to Python 3.12, randint would accept float arguments with .0 fractional part (like 10e10). Starting with Python 3.12, it fails with an error.
* fix preludes in bash scriptsEgor Tensin2022-12-07
|
* unit_tests: use ctest-driver.pyEgor Tensin2021-05-04
|
* cmake: slight CMakeLists.txt refactoringEgor Tensin2021-04-07
|
* cmake: check CTest tests outputEgor Tensin2021-04-05
|
* cmake: use install_pdbs()Egor Tensin2021-03-24
|
* README: updateEgor Tensin2021-03-24
|
* add stress_test.sh as a CTest testEgor Tensin2021-03-24
|
* add `make install`, `make test`, etc.Egor Tensin2021-03-24
| | | | Tests can be called using CTest now.
* cmake: files are per-directory, not per-extensionEgor Tensin2020-10-18
|
* cmake: no more target_include_directories hacksEgor Tensin2020-10-17
|
* cmake: minor tweks for the greater goodEgor Tensin2020-10-17
|
* stress_test.sh: fix a typoEgor Tensin2020-10-04
|
* unit_tests: get rid of an ugly hackEgor Tensin2020-10-04
|
* can't believe Boost::disable_autolinking isn't everywhereEgor Tensin2020-10-04
|
* unit_tests: reorder code a littleEgor Tensin2020-10-04
|
* stress_test.sh: move to test/Egor Tensin2020-08-31
|
* stress_test.py: fix datetime format in logsEgor Tensin2020-03-15
|
* stress_test.py: make it work with older PythonEgor Tensin2020-03-15
|
* test: make stress_test.py kind of OKEgor Tensin2020-03-15
|
* add missing copyright headersEgor Tensin2020-03-14
|
* 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