compiler: remove old generics hack; disable generics and repl tests for

now
This commit is contained in:
Alexander Medvednikov 2019-09-28 02:16:31 +03:00
parent 7c83c0569f
commit 1821dac795
3 changed files with 8 additions and 17 deletions

View file

@ -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"'