Hitalo Souza
8a986b994e
tools: fix v new abc
( #16933 )
2023-01-10 09:36:21 +02:00
Delyan Angelov
6a32c81070
tests: extract slow tests (prod, valgrind, inout, repl etc), from vlib/v/tests/ to vlib/v/slow_tests/ ( #16892 )
2023-01-09 23:47:03 +02:00
Hitalo Souza
2ec6e2b209
tools: fix v new <name> web ( #16738 )
2023-01-09 09:37:46 +03:00
JalonSolov
90941b3b1f
all: change optional to option ( #16914 )
2023-01-09 09:36:45 +03:00
Alexander Medvednikov
868908b80d
checker: require unsafe for Struct(voidptr) casts
2023-01-06 09:28:11 +03:00
Hitalo Souza
0146509516
examples: fullstack vweb example ( #16761 )
2023-01-06 04:36:42 +03:00
Delyan Angelov
c1a9f42b05
ci: add vlib/v/tests/orm_sub_array_struct_test.v to the skip list for the tests-sanitize-undefined-gcc job
2023-01-05 19:51:44 +02:00
Hitalo Souza
3598e7d08e
orm: add tests for fkey:
relationship attribute and retrival of joined rows ( #16877 )
2023-01-05 15:20:15 +02:00
Delyan Angelov
f9e8a91cd0
v: move cmd/v/help/ to vlib/v/help, to simplify the interaction between module lookup & v recompilation ( #16867 )
2023-01-04 14:01:05 +02:00
Ikko Ashimine
24189e02b5
tools: fix typo in vcomplete.v ( #16851 )
2023-01-03 10:11:06 +02:00
Delyan Angelov
1709d175bb
tools/fast: make the header a link to /, to ease navigation
2022-12-28 13:51:26 +02:00
Delyan Angelov
101aa4aeb0
tools/fast: add navigation links to older stat pages
2022-12-28 13:35:30 +02:00
Delyan Angelov
46ced75184
ci: fix v test-self
failures related to cmd/tools/vcreate_test.v
2022-12-21 21:13:06 +02:00
Alexander Medvednikov
88e33a83de
gg: fix draw_image on macos native; vcreate: vweb template
2022-12-21 19:33:37 +03:00
Swastik Baranwal
d19c1ef087
vpm: fix the direct installation of github repositories via the --git flag ( #16724 )
2022-12-20 17:38:08 +02:00
Swastik Baranwal
8873127687
v doc: properly highlight the new generics syntax []
in the CLI results of v doc arrays
etc ( #16703 )
2022-12-19 12:12:46 +02:00
Delyan Angelov
14cc43b0f6
v ast: add forgotten fields since 2022/06/01
2022-12-15 21:18:54 +02:00
Makhnev Petr
db2111235e
tests: add a teamcity output format for V's test runner ( #16681 )
2022-12-15 09:29:09 +02:00
Felipe Pena
1ba1f99b9c
orm: declare missing functions to handle literal types ( #16627 )
2022-12-09 20:34:34 +02:00
Delyan Angelov
48a7de643e
all: support typeof[ T ]().idx and typeof[ T ]().name, where T can be any type, including ![]&string
( #16513 )
2022-12-07 11:26:27 +02:00
Larpon
5fc7b6d3d6
tools: add tests for vcomplete ( #16587 )
2022-12-06 13:02:32 +02:00
Larpon
349ce08a11
tools: fix vcompletion for single-file directories ( #16586 )
2022-12-05 09:15:43 +02:00
Delyan Angelov
f5d0ba318e
testing: support new events in the output modules of v test
: .cmd_begin sent right before a _test.v execution, and .cmd_end sent right after a _test.v execution
2022-12-03 20:06:46 +02:00
Delyan Angelov
d09c8c914b
testing: refactor the v test
implementation to make supporting different output modes easier
2022-12-02 18:12:42 +02:00
Delyan Angelov
e419faf746
all: fix dependant
->dependent
typos, cleanup comments
2022-12-02 12:51:10 +02:00
yuyi
f16722596c
all: replace generic '<>' with '[]' in error messages and comments ( #16571 )
2022-12-02 09:22:48 +02:00
Delyan Angelov
161847ed1a
v.pref: make -b unknown_backend
an error, with a more informative diagnostic message
2022-12-01 15:28:51 +02:00
yuyi
ef5be22f81
all: replace generic <>
with []
- part 2 ( #16536 )
2022-11-26 18:23:26 +02:00
Delyan Angelov
a987f84b15
ci: skip the very slow running tests in v test-self
, when -asan-compiler or -msan-compiler is passed as well.
2022-11-22 19:52:43 +02:00
Subhomoy Haldar
aae63f5eb5
tools: gitignore the bin/ folder in new V projects (created by v init
) ( #16493 )
2022-11-20 14:43:33 +02:00
shove
37700502f5
all: implement struct field optional and disallow storing result ( #16392 )
2022-11-17 07:51:50 +02:00
yuyi
017ace6ea7
vfmt: change all '$expr' to '${expr}' ( #16428 )
2022-11-15 16:53:13 +03:00
Delyan Angelov
eb11b0149d
tools: fix git_pre_commit_hook.vsh on windows
2022-11-13 21:57:10 +02:00
Delyan Angelov
1978176c22
tools: add an utility cmd/tools/git_pre_commit_hook.vsh script
...
That script can be used to ensure that all commited V files are vfmt-ed,
i.e. it will run `v fmt -w ` on them before commiting them.
To use the script in your V project, you need to be in the main folder
of your project, then do the equivalent of:
```sh
cp /PATH/TO_YOUR/V/cmd/tools/git_pre_commit_hook.vsh .git/hooks/pre-commit
chmod 755 .git/hooks/pre-commit
```
Note: you can use this command:
`git config --bool --add hooks.stopCommitOfNonVfmtedVFiles true`
... to make it just *prevent* the commiting of unformatted .v files,
i.e. stop the commiting, if they are not, but *without modifying them*
automatically (you will then need to run `v fmt -w` on them manually).
Note 2: Git supports the option `--no-verify`, to temporarily disable all hooks.
2022-11-13 21:22:46 +02:00
shove
26d643fc5d
all: rollback to old interpolation (step 3) ( #16380 )
2022-11-10 15:05:34 +03:00
Dominik Pytlewski
2634b99769
sqlite: expose SQLite's VFS layer ( #16359 )
2022-11-09 19:57:06 +02:00
Delyan Angelov
5f33585edf
tools: add support for VSELF_SHOULD_FAIL to v self
, in order to make testing all v up
failure modes easier.
2022-11-07 12:36:30 +02:00
Alexander Medvednikov
e81e0ac708
fmt: replace go
with spawn
2022-11-05 10:46:40 +03:00
Delyan Angelov
b52b8429d4
vfmt: implement support for // vfmt off and // vfmt on, with it, v fmt -w .
now works. ( #16335 )
2022-11-05 09:08:01 +03:00
Delyan Angelov
4cabf709e1
tools: add support for a |``v shared| markdown code tag, for illustrating code examples starting with
module not_main`
2022-11-04 15:35:25 +02:00
Delyan Angelov
2dffb04650
ci: fix formatting of cmd/tools/vtest-cleancode.v
after resolving conflicts
2022-11-04 15:12:46 +02:00
Delyan Angelov
7f91db695c
examples, tests: small formatting cleanup in cube_glsl.v , remove already fixed skips in v test-cleancode
, before // vfmt off
and // vfmt on
2022-11-04 14:48:20 +02:00
Delyan Angelov
f427a5241a
os,tools: add os.vtmp_dir()
...
Use it to consistently place all temporary files created by tests in a overridable folder specific to the user, that is easy to cleanup later.
NOTE: os.temp_dir() on macos returns `/tmp`, and using `/tmp/v` is a problem when multiple unix users are trying to access/create/write to it.
2022-11-03 10:19:51 +02:00
JalonSolov
d11baa691c
v: update the .gitattributes/.gitignore files generated by v init
( #16292 )
2022-11-02 20:41:12 +02:00
Delyan Angelov
7bd00b7580
tools: make fast_job.v more verbose and robust to compilation failures in fast.v, and to what compiler exactly was used to compile fast_job.v itself.
2022-11-02 13:26:12 +02:00
Delyan Angelov
82dc9ca434
tools: make fast.v results more robust to AWS spikes (increase samples, discard the top few)
2022-11-02 13:03:30 +02:00
Delyan Angelov
bd7c86a9d4
tools: make fast_job.v more informative on updates
2022-11-01 16:12:36 +02:00
Delyan Angelov
1868b101a5
tools: fix commit message cell border in fast.vlang.io
2022-11-01 16:05:50 +02:00
Delyan Angelov
32ce3d9149
tools: make fast_job.v more robust
2022-11-01 15:49:23 +02:00
Delyan Angelov
edb3f1df32
tools: fix table wrapping in fast.vlang.io, use <th> cells for the heading
2022-11-01 15:13:09 +02:00