aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test (unfollow)
Commit message (Collapse)Author
2023-12-28test/py/ -> test/src/Egor Tensin
2023-12-27test: exclude flame graph tests by defaultEgor Tensin
2023-12-12switch to egor@tensin.nameEgor Tensin
2023-11-15implement a command to list runsEgor Tensin
2023-11-12refactoringEgor Tensin
2023-11-02test: prevent some classes of hangupsEgor Tensin
This would allow the exceptions (like the logging misconfiguration exceptions recently) to propagate to the main process.
2023-08-27test: add a target to generate an HTML reportEgor Tensin
2023-08-27again, reorganize test targetsEgor Tensin
2023-08-27make test/perf -> make flame_graphsEgor Tensin
2023-07-26test: test a weird exit codeEgor Tensin
2023-07-26process: portable exit code processingEgor Tensin
2023-07-19move valgrind.sh to scripts/Egor Tensin
2023-07-19test: refactor command line optionsEgor Tensin
2023-07-18test: store multiple flame graphs alongsideEgor Tensin
Previously, it would get stored in build/flame_graph/flame_graphs.svg. Now, the test repository codename is added to the file name. Also, some refactoring and simplifying test filtering.
2023-07-18flame_graph.sh -> flamegraph.shEgor Tensin
Inspired by flamegraph.pl.
2023-07-18test: minor refactoringEgor Tensin
2023-07-18test: exclude silly tests from python_tests_valgrindEgor Tensin
2023-07-18test: speed up output_long test_repo testsEgor Tensin
2023-07-18implement flame graph generationEgor Tensin
2023-07-18process: preserve the exit code moreEgor Tensin
If the process is killed by a signal, preserve the exit code as it would be reported by $?.
2023-07-18switch to JSON-RPC as message formatEgor Tensin
Instead of the weird `struct msg` I had, I switched to the JSON-RPC format. It's basically the same, but has a well-defined semantics in case of errors.
2023-07-12test: move some code to lib/Egor Tensin
2023-07-12test: use namedtuple where appropriateEgor Tensin
2023-07-11test: add test for segfaulting CI scriptEgor Tensin
The C code leaked out of src/, so I moved .clang-format and some compile options to the root directory. Also, I'm starting to hit test execution limits; I'm going to limit the repositories used for stress testing.
2023-07-11sqlite: make some identifiers more readableEgor Tensin
2023-07-10test: more compact CI scriptsEgor Tensin
2023-07-10test: fix Python freezesEgor Tensin
I would get random freezes when running tests; I completely forgot that logging & multiprocessing don't play well together.
2023-07-10test: code styleEgor Tensin
2023-07-10test: test CI run output containing \0Egor Tensin
2023-07-10test: test long CI run outputEgor Tensin
It immediately exposed a horrible bug in net.c, which is now fixed.
2023-07-09test: prettier test namesEgor Tensin
2023-07-09test: test empty CI run output, refactoringEgor Tensin
Meh, moving the shell code generation to Python I like better in the end.
2023-07-09store process output in SQLiteEgor Tensin
2023-07-09test: attempt to fix random port selection againEgor Tensin
2023-07-09test: print test timingsEgor Tensin
2023-07-09test: increase timeoutsEgor Tensin
All the new added tests require more time.
2023-07-09test: don't wait for hanging processesEgor Tensin
2023-07-09test: fix sqlite3.connect usageEgor Tensin
2023-07-08test: dedupe code by using @parametrizeEgor Tensin
2023-07-08test: refactoringEgor Tensin
2023-07-08test: verify that added runs are in the databaseEgor Tensin
And that they're marked as finished. It immediately exposed some concurrency bugs, so some locking has been fixed.
2023-07-07test: add some basic command-line usage testsEgor Tensin
2023-07-06test: try mitigating port clashesEgor Tensin
Also, I don't think calling random.seed is necessary.
2023-07-06test: add one more stress testEgor Tensin
2023-07-05test: add a 2000-iteration basic repository testEgor Tensin
2023-07-05tcp_server: keep track of client threadsEgor Tensin
This is a major change, obviously; brought to me by Valgrind, which noticed that we don't actually clean up after cimple-client threads. For a more thorough explanation, please see the added comment in tcp_server.c.
2023-07-04storage: mark completed runs as suchEgor Tensin
2023-06-30show git hash with --versionEgor Tensin
Also, use cmake's configure_file to build string constants in.
2023-06-30test: split tests into different filesEgor Tensin
2023-06-29test: shuffle files a bitEgor Tensin
This should hopefully reduce clutter in the test/ directory. Side note: if I leave the __init__.py file in the new py/ directory, pytest fails with import errors. To make it work, I need to either delete it or keep the __init__.py file in both test/ and py/. No idea why.