Regression tests

This commit is contained in:
o9000 2017-08-30 16:25:47 +02:00
parent 9b9310dc84
commit da77f89910

View file

@ -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)