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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8773
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     1
#! /usr/bin/env python
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     2
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     3
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     4
# A list of C++ examples to run in order to ensure that they remain
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     5
# buildable and runnable over time.  Each tuple in the list contains
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     6
#
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     7
#     (example_name, do_run, do_valgrind_run).
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     8
#
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
     9
# See test.py for more information.
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    10
cpp_examples = [
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    11
    ("dumbbell-animation", "True", "False"),
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    12
    ("star-animation", "True", "False"),
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    13
    ("grid-animation", "True", "False"),
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    14
    ("wireless-animation", "True", "False"),
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    15
]
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    16
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    17
# A list of Python examples to run in order to ensure that they remain
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    18
# runnable over time.  Each tuple in the list contains
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    19
#
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    20
#     (example_name, do_run).
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    21
#
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    22
# See test.py for more information.
25b20434eba8 NetAnim: add test and examples to run
John Abraham <john.abraham@gatech.edu>
parents:
diff changeset
    23
python_examples = []