src/netanim/test/examples-to-run.py
author John Abraham <john.abraham@gatech.edu>
Sat, 19 May 2012 14:56:43 -0700
changeset 8773 25b20434eba8
permissions -rw-r--r--
NetAnim: add test and examples to run

#! /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 = [
    ("dumbbell-animation", "True", "False"),
    ("star-animation", "True", "False"),
    ("grid-animation", "True", "False"),
    ("wireless-animation", "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 = []