cfg_site_sample.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #
  2. # cfg_site_sample.py - Sample site configuration
  3. #
  4. # Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #
  20. import builder
  21. # Your site name
  22. SITE_NAME="Newham3"
  23. # The URL where tests will be submitted to
  24. URL = "http://192.168.0.2/dash/submit.php?project=PJSIP"
  25. # Test group
  26. GROUP = "Experimental"
  27. # PJSIP base directory
  28. BASE_DIR = "/root/project/pjproject"
  29. # List of additional ccdash options
  30. #OPTIONS = ["-o", "out.xml", "-y"]
  31. OPTIONS = []
  32. # What's the content of config_site.h
  33. CONFIG_SITE = ""
  34. # What's the content of user.mak
  35. USER_MAK = ""
  36. # List of regular expression of test patterns to be excluded
  37. EXCLUDE = []
  38. # List of regular expression of test patterns to be included (even
  39. # if they match EXCLUDE patterns)
  40. NOT_EXCLUDE = []
  41. #"configure", "update", "build.*make", "build", "run.py mod_run.*100_simple"]