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

tests: cleanup long running repl tests (replaced by faster ordinary tests in vlib/v/tests/)

This commit is contained in:
Delyan Angelov 2020-12-05 08:52:08 +02:00
parent 595efbac5b
commit b18915df62
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
7 changed files with 4 additions and 39 deletions

View File

@ -1,7 +0,0 @@
mut a := [1, 2, 3]
b := [4, 5]
a << b
a = a.filter(it%2==0)
a
===output===
[2, 4]

View File

@ -1,6 +0,0 @@
mut a := [1,2,3] // comment
// test comment
a << 4
a
===output===
[1, 2, 3, 4]

View File

@ -1,6 +1,5 @@
num := 1 str := 'Hello'
num := 1
num
str
===output===
1
Hello

View File

@ -1,8 +0,0 @@
name := 'Bob' age := 20 large_number := i64(9999999999)
println(name)
println(age)
println(large_number)
===output===
Bob
20
9999999999

View File

@ -1,7 +0,0 @@
println('Hello World')
println('Foo Bar')
println('dlroW olleH')
===output===
Hello World
Foo Bar
dlroW olleH

View File

@ -1,5 +1,3 @@
'abc'
'abc'+'xyz'
===output===
abc
abcxyz

View File

@ -1,7 +1,3 @@
println('Hello, world!')
println('Привет, мир!')
println('你好世界')
println('Hello, world! | Привет, мир! | 你好世界')
===output===
Hello, world!
Привет, мир!
你好世界
Hello, world! | Привет, мир! | 你好世界