-
Notifications
You must be signed in to change notification settings - Fork 0
/
testdata_sample.py
60 lines (49 loc) · 1.64 KB
/
testdata_sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python
#************************************************************
#
# IMITATOR
#
# Testing script
# (Testing data)
#
# Testing data descripion:
# sample test data for testing the test =)
#
# Etienne ANDRE
# Laboratoire d'Informatique de Paris Nord
# Universite Paris 13, Sorbonne Paris Cite, France
# Created : 2013/01/23
# Last modified: 2013/01/23
#************************************************************
#************************************************************
# BINARIES
#************************************************************
# Binaries to execute, with options
binaries = [
{'version': '2.51' , 'options' : '-merge'}
,
{'version': 'unstable' , 'options' : ''}
]
#************************************************************
# COMMON OPTIONS
#************************************************************
# Options common for all case studies
common_options = ''
#************************************************************
# LIST OF EXAMPLES
#************************************************************
examples = [
{'files' : ['Train/Train1PTA.imi' , 'Train/Train1PTA.pi0'] , 'options' : ''}
,
{'files' : ['Train/Train1PTA.imi' , 'Train/Train1PTA.pi0'] , 'options' : ''}
]
##************************************************************
## STANDARD CODE
##************************************************************
## NOTE: I couldn't find a way to get the previous variables global (otherwise this code is useless)
#def get_examples():
#return examples
#def get_binaries():
#return binaries
#def get_common_options():
#return common_options