Permalink
Please sign in to comment.
Browse files
Merge pull request #6 from johnm/master
Update kmin_test and add .gitignore
- Loading branch information...
Showing
with
42 additions
and 3 deletions.
- +39 −0 .gitignore
- +2 −2 test/Makefile
- +1 −1 test/kmin_test.c
39
.gitignore
| @@ -0,0 +1,39 @@ | ||
| +# General | ||
| +*.a | ||
| +*.dSYM/ | ||
| +*.la | ||
| +*.lo | ||
| +*.o | ||
| +*.opensdf | ||
| +*.orig | ||
| +*.sdf | ||
| +*.suo | ||
| +*.swp | ||
| +*.tests | ||
| +*.vcxproj.filters | ||
| +*.vcxproj.user | ||
| +*~ | ||
| +.git | ||
| +TAGS | ||
| + | ||
| +# Mac/Xcode-specfic | ||
| +xcuserdata | ||
| +contents.xcworkspacedata | ||
| +.DS_Store | ||
| +._* | ||
| + | ||
| +# Test byproducts | ||
| +test/kbtree_test | ||
| +test/khash_keith | ||
| +test/khash_keith2 | ||
| +test/khash_test | ||
| +test/klist_test | ||
| +test/kmin_test | ||
| +test/kseq_bench | ||
| +test/kseq_bench2 | ||
| +test/kseq_test | ||
| +test/ksort_test | ||
| +test/ksort_test-stl | ||
| +test/kstring_bench | ||
| +test/kstring_bench2 | ||
| +test/kvec_test |
0 comments on commit
15ddda3