1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/repl
2020-01-20 23:04:26 +01:00
..
chained_fields repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
conditional_blocks repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
immutable_len_fields repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
runner repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
.gitattributes compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
.gitignore compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
bad_in_type.repl parser: check types in a in b expressions 2019-12-04 22:17:24 +03:00
default_printing.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
empty_struct.repl compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
error_nosave.repl update repls tests 2019-11-13 20:40:01 +03:00
error.repl parser: undefined error 2019-10-20 20:47:27 +03:00
function.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
multiple_decl.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
multiple_println.repl compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
naked_strings.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
newlines.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
nomain.repl tests: no main fn 2019-10-13 17:50:55 +03:00
nothing.repl compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
open_close_string_check.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
option.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
postfix_operators.repl repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
println.repl compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
README.md compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00
repl_test.v repl: execute REPL tests ~1.5x to 2x faster 2020-01-20 23:04:26 +01:00
run.v tests: improved test output formatting 2019-12-30 05:23:54 +01:00
var_decl.repl compiler: make compiler an ordinary vlib/compiler module 2019-10-13 16:37:43 +03:00

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