Skip to content
Snippets Groups Projects
Commit 37c3731d authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

test-ancestor: define a main function

We're going to add to it in upcoming patches.
parent c6cd4b8b
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
print " C returned: %s" % cgcas print " C returned: %s" % cgcas
print " Python returned: %s" % pygcas print " Python returned: %s" % pygcas
if __name__ == '__main__': def main():
test_missingancestors() test_missingancestors()
test_lazyancestors() test_lazyancestors()
test_gca() test_gca()
...@@ -136,3 +136,6 @@ ...@@ -136,3 +136,6 @@
test_missingancestors() test_missingancestors()
test_lazyancestors() test_lazyancestors()
test_gca() test_gca()
if __name__ == '__main__':
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment