Includes: - Python examples to test Brite, Click and Openflow - CI jobs for manylinux packaging of pip wheel - Support for Linux distributions with lib and lib64 directories - Configuration of RPATH not to require setting LD_LIBRARY_PATH Signed-off-by: Gabriel Ferreira <gabrielcarvfer@gmail.com>
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
#! /usr/bin/env python3
|
|
|
|
# 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 = [
|
|
("nsclick-simple-lan --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
("nsclick-raw-wlan --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
("nsclick-udp-client-server-csma --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
("nsclick-udp-client-server-wifi --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
("nsclick-routing --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
("nsclick-defines --clickConfigFolder=../../src/click/examples", "NSCLICK == True", "False"),
|
|
]
|
|
|
|
# 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 = [
|
|
("nsclick-simple-lan.py", "NSCLICK == True"),
|
|
]
|