Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. diff --git a/buildscripts/burn_in_tests.py b/buildscripts/burn_in_tests.py
  2. index 6cb84c0..fc1fd6b 100644
  3. --- a/buildscripts/burn_in_tests.py
  4. +++ b/buildscripts/burn_in_tests.py
  5. @@ -20,7 +20,7 @@ if __name__ == "__main__" and __package__ is None:
  6.  
  7.  
  8. def parse_command_line():
  9. - parser = optparse.OptionParser()
  10. + parser = optparse.OptionParser(usage="Usage: %prog [options] [resmoke command]")
  11.  
  12. parser.add_option("--noExec", dest="no_exec", action="store_true",
  13. help="Do not run resmoke loop on new tests.")
  14. @@ -28,9 +28,6 @@ def parse_command_line():
  15. parser.add_option("--reportFile", dest="report_file",
  16. help="Write a JSON file with test executor information.")
  17.  
  18. - parser.add_option("--resmokeCmd", dest="resmoke_cmd",
  19. - help="Arguments to pass through to resmoke.py")
  20. -
  21. parser.add_option("--skipEnterpriseSuites", dest="no_enterprise", action="store_true",
  22. help="Do not run against enterprise specific executors.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement