-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly implemented multithreaded tests. (#15)
* Correctly implemented multithreaded tests. * I had first attempted this in #2, but removed because my implementation was flawed. * This implementation should do everything correctly. * Updated ignores to be directory-relative. * macOS: use GCC instead of Apple C compiler. * Because the default compiler does not support standard threads, and does not set the macro indicating the same. * Neither does any version of GCC. * Disabled multithreading in macOS tests. * Switched back to default C compiler on macOS.
- Loading branch information
Showing
7 changed files
with
54 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
build | ||
/.vscode/ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
benchmarks | ||
benchmarks.exe | ||
/benchmarks | ||
/benchmarks.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread-safe | ||
thread-safe.exe | ||
thread-unsafe | ||
thread-unsafe.exe | ||
/thread-safe | ||
/thread-safe.exe | ||
/thread-unsafe | ||
/thread-unsafe.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
thread-safe | ||
thread-safe.exe | ||
thread-unsafe | ||
thread-unsafe.exe | ||
/thread-safe | ||
/thread-safe.exe | ||
/thread-unsafe | ||
/thread-unsafe.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
hdrbg.egg-info | ||
*.dll | ||
*.o | ||
*.so | ||
/hdrbg.egg-info/ | ||
/*.dll | ||
/*.o | ||
/*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
tests | ||
tests.exe | ||
/tests | ||
/tests.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters