Regression tests
This commit is contained in:
parent
9b9310dc84
commit
da77f89910
1 changed files with 5 additions and 1 deletions
|
@ -275,9 +275,13 @@ def run_tests():
|
|||
run_test(config, index)
|
||||
|
||||
|
||||
def get_default_src_dir():
|
||||
return os.path.realpath(os.path.dirname(os.path.realpath(__file__)) + "/../")
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--src_dir", default="../../")
|
||||
parser.add_argument("--src_dir", default=get_default_src_dir())
|
||||
args = parser.parse_args()
|
||||
show_timestamp()
|
||||
show_git_info(args.src_dir)
|
||||
|
|
Loading…
Reference in a new issue