Skip to content

Commit

Permalink
Updates gitignore, adds test
Browse files Browse the repository at this point in the history
  • Loading branch information
cslarsen committed Jan 22, 2018
1 parent 3b996e3 commit 56d07c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
*.dSYM
*.o
*.pyc
*.pyo
*.so
GPATH
GRTAGS
GTAGS
libmultiply.so
mj
4 changes: 4 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ def example7(a, b, c):
def foo(a, b):
return a*a - b*b

def bar(n):
return n+123456789

test(example0)
test(example1)
test(example2)
Expand All @@ -98,6 +101,7 @@ def foo(a, b):
test(example6)
#test(example7) # works, but produces too much output
test(foo)
test(bar)

if not good:
print("")
Expand Down

0 comments on commit 56d07c9

Please sign in to comment.