1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.parser: add p.unique_prefix, add run_project_folders_test.v (closes #10023)

This commit is contained in:
Delyan Angelov
2021-05-06 21:08:33 +03:00
parent a6764e3cc3
commit ea74e2bc64
6 changed files with 67 additions and 1 deletions

View File

@ -23,6 +23,11 @@ General runnable tests for different features of the V compiler.
Test output of running a V program matches an expected .out file.
Check the source for how to test panics.
* `vlib/v/tests/run_project_folders_test.v`
Tests whether whole project folders can be compiled, and run.
NB: Each project in these folders, should finish with exit code 0,
and it should output `OK` as its last stdout line.
## Test building of actual V programs (examples, tools, V itself)
* `v build-tools`