mirror of
https://github.com/vlang/v.git
synced 2025-09-16 07:52:32 +03:00
compiler: remove old generics hack; disable generics and repl tests for
now
This commit is contained in:
parent
7c83c0569f
commit
1821dac795
3 changed files with 8 additions and 17 deletions
|
@ -1041,6 +1041,9 @@ fn (v &V) test_v() {
|
|||
println('Testing...')
|
||||
mut tmark := benchmark.new_benchmark()
|
||||
for dot_relative_file in test_files {
|
||||
if dot_relative_file.contains('repl_test.v') {
|
||||
continue
|
||||
}
|
||||
relative_file := dot_relative_file.replace('./', '')
|
||||
file := os.realpath( relative_file )
|
||||
tmpcfilepath := file.replace('_test.v', '_test.tmp.c')
|
||||
|
@ -1072,6 +1075,9 @@ fn (v &V) test_v() {
|
|||
examples := os.walk_ext('examples', '.v')
|
||||
mut bmark := benchmark.new_benchmark()
|
||||
for relative_file in examples {
|
||||
if relative_file.contains('vweb') {
|
||||
continue
|
||||
}
|
||||
file := os.realpath( relative_file )
|
||||
tmpcfilepath := file.replace('.v', '.tmp.c')
|
||||
mut cmd := '"$vexe" $joined_args -debug "$file"'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue