v/vlib/v/tests/repl
yuyi fb75d528eb
builder: remove panics, when cleaning up tmp files after tests (#11525)
2021-09-17 20:56:33 +03:00
..
chained_fields
conditional_blocks
immutable_len_fields
runner builder: remove panics, when cleaning up tmp files after tests (#11525) 2021-09-17 20:56:33 +03:00
.gitattributes
.gitignore
README.md
array_filter.repl vrepl: fix array_filter (#9104) 2021-03-04 12:24:14 +02:00
array_init.repl
bad_in_type.repl.skip
default_printing.repl tests: cleanup long running repl tests (replaced by faster ordinary tests in vlib/v/tests/) 2020-12-05 08:52:08 +02:00
empty_struct.repl.skip
entire_commented_module.repl builder: show file:line when import fails (#8537) 2021-02-04 09:09:54 +02:00
error.repl compiler: remove space at the end of warn/error messages to minimize diff churn 2020-07-29 20:37:55 +03:00
error_nosave.repl.skip
function.repl.skip
import.repl
naked_strings.repl tests: cleanup long running repl tests (replaced by faster ordinary tests in vlib/v/tests/) 2020-12-05 08:52:08 +02:00
newlines.repl
nomain.repl
nothing.repl
open_close_string_check.repl
option.repl.skip
optional_call.repl
postfix_operators.repl
println.repl tests: cleanup long running repl tests (replaced by faster ordinary tests in vlib/v/tests/) 2020-12-05 08:52:08 +02:00
repl_test.v os: add execute_or_exit(cmd), use it consistently instead of execute_or_panic(cmd) 2021-07-20 15:22:04 +03:00
var_decl.repl

README.md

V REPL Tests Script

How to write a new test

  • Create a new file named *.repl
  • Write the input to be given to REPL
  • Add ===output===
  • Write the output expected

Notes

Keep in mind, that the way V repl works for now, every non empty line would cause a new recompilation of the entire repl content that was collected so far.

Longer REPL files would cause measurably longer recompilation/testing times.

Also, longer repl files would be slower to debug when they fail, It is better to have several smaller files vs one huge REPL file.

Example :

a := 1
println(a)
===output===
1