Files
unison/examples/traffic-control/examples-to-run.py
Pasquale Imputato ea75b70eb1 examples: Add a traffic control example
Signed-off-by: Stefano Avallone <stavallo@unina.it>
2016-03-08 10:46:01 -08:00

21 lines
610 B
Python
Executable File

#! /usr/bin/env python
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
# A list of C++ examples to run in order to ensure that they remain
# buildable and runnable over time. Each tuple in the list contains
#
# (example_name, do_run, do_valgrind_run).
#
# See test.py for more information.
cpp_examples = [
("traffic-control", "True", "True"),
]
# A list of Python examples to run in order to ensure that they remain
# runnable over time. Each tuple in the list contains
#
# (example_name, do_run).
#
# See test.py for more information.
python_examples = []