diff options
author | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2015-04-01 20:32:28 +0000 |
---|---|---|
committer | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2015-04-01 20:32:28 +0000 |
commit | 53fea983a90447865c429c2573bfb36cba179054 (patch) | |
tree | 42a0fa57a43103378144607d16e575e82071f7e1 /kpov_judge/tasks/vlc_stream_rtp | |
parent | 2fe40ec78ce6ab3a8c2c5659713b7f947a5686fc (diff) |
added hints to task results
git-svn-id: https://svn.lusy.fri.uni-lj.si/kpov-public-svn/kpov-public@296 5cf9fbd1-b2bc-434c-b4b7-e852f4f63414
Diffstat (limited to 'kpov_judge/tasks/vlc_stream_rtp')
-rw-r--r-- | kpov_judge/tasks/vlc_stream_rtp/task.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kpov_judge/tasks/vlc_stream_rtp/task.py b/kpov_judge/tasks/vlc_stream_rtp/task.py index 246a743..f292ed1 100644 --- a/kpov_judge/tasks/vlc_stream_rtp/task.py +++ b/kpov_judge/tasks/vlc_stream_rtp/task.py @@ -73,6 +73,8 @@ def gen_params(user_id, params_meta): def task_check(results, params): import re + score = 0 + hints = [] packs = results['tcpdump_hex'].split('> 239.255.255.255.9875: UDP, length') p1 = packs[1] p1_l = p1.split('\n') @@ -88,7 +90,7 @@ def task_check(results, params): params['PORT']) if re.search(s, results['tcpdump']): score += 5 - return score + return score, hints def prepare_disks(templates, params): # d = templates['simpleArbiterDhcp'] |