habanero-rice / hclib

A C/C++ task-based programming model for shared memory and distributed parallel computing.
http://habanero-rice.github.io/hclib/
BSD 3-Clause "New" or "Revised" License
71 stars 35 forks source link

Simplify .gitignore for C tests #51

Closed DaoWen closed 7 years ago

DaoWen commented 7 years ago

We weren't ignoring the boot0 or deadlock0 test binaries. The more general wildcards make it so we won't need to modify the .gitignore when adding new tests unless the prefix is totally new.

budimlic commented 7 years ago

What happened to *.dSYM?

DaoWen commented 7 years ago

What happened to *.dSYM?

It's no longer needed since async0.dSYM is covered by the async* rule, etc.

budimlic commented 7 years ago

Gotcha. I would only add another rule for not excluding .h files (which we currently don't have in the test directory, but might in the future)

agrippa commented 7 years ago

Looks good to me. @budimlic can merge once he signs off.