summaryrefslogtreecommitdiff
path: root/tests/cdash/cfg_site_sample.py
blob: 147aa4965adea0a5099c1a5554e8125083496f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import builder

# Your site name
SITE_NAME="Newham2"

# The URL where tests will be submitted to
URL = "http://192.168.0.2/dash/submit.php?project=PJSIP"

# Test group
GROUP = "Experimental"

# PJSIP base directory
BASE_DIR = "/root/project/pjproject"

# List of additional ccdash options
#OPTIONS = ["-o", "out.xml", "-y"]
OPTIONS = ["-o", "out.xml"]

# List of regular expression of test patterns to be excluded
EXCLUDE = [".*"]

# List of regular expression of test patterns to be included (even
# if they match EXCLUDE patterns)
NOT_EXCLUDE = ["run.py mod_run.*100_simple"]
#"configure", "update", "build.*make", "build", "run.py mod_run.*100_simple"]