tests: remove tmp files on OK live_test.v run

pull/7965/head^2
Delyan Angelov 2021-01-09 20:55:56 +02:00
parent 407da09acf
commit 561d4f84b3
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 7 additions and 2 deletions

View File

@ -37,6 +37,8 @@ const (
res_changed_file = os.join_path(os.temp_dir(), 'CHANGED.txt') res_changed_file = os.join_path(os.temp_dir(), 'CHANGED.txt')
res_another_file = os.join_path(os.temp_dir(), 'ANOTHER.txt') res_another_file = os.join_path(os.temp_dir(), 'ANOTHER.txt')
res_stop_file = os.join_path(os.temp_dir(), 'STOP.txt') res_stop_file = os.join_path(os.temp_dir(), 'STOP.txt')
cleanup_files = [tmp_file, source_file, genexe_file, output_file, res_original_file,
res_changed_file, res_another_file, res_stop_file]
live_program_source = " live_program_source = "
module main module main
@ -158,6 +160,9 @@ fn testsuite_end() {
assert histogram['ORIGINAL'] > 0 assert histogram['ORIGINAL'] > 0
assert histogram['CHANGED'] + histogram['ANOTHER'] > 0 assert histogram['CHANGED'] + histogram['ANOTHER'] > 0
// assert histogram['END'] > 0 // assert histogram['END'] > 0
for tfile in cleanup_files {
os.rm(tfile)
}
} }
fn change_source(new string) { fn change_source(new string) {