A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
examples-to-run.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3 ## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
4 
5 # A list of C++ examples to run in order to ensure that they remain
6 # buildable and runnable over time. Each tuple in the list contains
7 #
8 # (example_name, do_run, do_valgrind_run).
9 #
10 # See test.py for more information.
11 cpp_examples = [
12  ("lena-cqi-threshold", "True", "True"),
13  ("lena-dual-stripe --simTime=0.01", "True", "True"),
14  ("lena-dual-stripe --epc=1 --simTime=0.01", "True", "True"),
15  ("lena-dual-stripe --epc=1 --useUdp=0 --simTime=0.01", "True", "True"),
16  ("lena-dual-stripe --epc=1 --fadingTrace=../../src/lte/model/fading-traces/fading_trace_EPA_3kmph.fad --simTime=0.01", "True", "True"),
17  ("lena-dual-stripe --nBlocks=1 --nMacroEnbSites=0 --macroUeDensity=0 --homeEnbDeploymentRatio=1 --homeEnbActivationRatio=1 --homeUesHomeEnbRatio=2 --macroEnbTxPowerDbm=0 --simTime=0.01", "True", "True"),
18  ("lena-fading", "True", "True"),
19  ("lena-gtpu-tunnel", "True", "True"),
20  ("lena-intercell-interference", "True", "True"),
21  ("lena-pathloss-traces", "True", "True"),
22  ("lena-profiling", "True", "True"),
23  ("lena-rlc-traces", "True", "True"),
24  ("lena-rem", "True", "True"),
25  ("lena-rem-sector-antenna", "True", "True"),
26  ("lena-simple", "True", "True"),
27  ("lena-simple-epc", "True", "True"),
28 ]
29 
30 # A list of Python examples to run in order to ensure that they remain
31 # runnable over time. Each tuple in the list contains
32 #
33 # (example_name, do_run).
34 #
35 # See test.py for more information.
36 python_examples = []