diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.c | 4 | ||||
-rw-r--r-- | tests/testsxx.cpp | 4 | ||||
-rw-r--r-- | tests/warning.c | 16 |
3 files changed, 16 insertions, 8 deletions
diff --git a/tests/tests.c b/tests/tests.c index cbf7ff8..3696216 100644 --- a/tests/tests.c +++ b/tests/tests.c @@ -267,8 +267,8 @@ dmnsn_progressbar_async(const char *str, const dmnsn_progress *progress) /* Create the worker thread */ if (pthread_create(&barprogress->thread, NULL, &dmnsn_progressbar_thread, - payload) - != 0) { + payload) != 0) + { dmnsn_error(DMNSN_SEVERITY_HIGH, "Couldn't start progress bar background thread."); } diff --git a/tests/testsxx.cpp b/tests/testsxx.cpp index 908d0f8..aaeb546 100644 --- a/tests/testsxx.cpp +++ b/tests/testsxx.cpp @@ -116,8 +116,8 @@ namespace Dimension /* Create the worker thread */ if (pthread_create(&barprogress->thread, NULL, &progressbar_thread, - reinterpret_cast<void*>(payload)) - != 0) { + reinterpret_cast<void*>(payload)) != 0) + { throw Dimension_Error("Couldn't create background thread."); } diff --git a/tests/warning.c b/tests/warning.c index 9b8ba12..7b6aac3 100644 --- a/tests/warning.c +++ b/tests/warning.c @@ -25,18 +25,26 @@ int main() { - if (dmnsn_get_resilience() != DMNSN_SEVERITY_MEDIUM) return EXIT_FAILURE; + if (dmnsn_get_resilience() != DMNSN_SEVERITY_MEDIUM) { + return EXIT_FAILURE; + } dmnsn_set_resilience(DMNSN_SEVERITY_LOW); - if (dmnsn_get_resilience() != DMNSN_SEVERITY_LOW) return EXIT_FAILURE; + if (dmnsn_get_resilience() != DMNSN_SEVERITY_LOW) { + return EXIT_FAILURE; + } dmnsn_set_resilience(DMNSN_SEVERITY_MEDIUM); - if (dmnsn_get_resilience() != DMNSN_SEVERITY_MEDIUM) return EXIT_FAILURE; + if (dmnsn_get_resilience() != DMNSN_SEVERITY_MEDIUM) { + return EXIT_FAILURE; + } dmnsn_error(DMNSN_SEVERITY_LOW, "This warning is expected."); dmnsn_set_resilience(DMNSN_SEVERITY_HIGH); - if (dmnsn_get_resilience() != DMNSN_SEVERITY_HIGH) return EXIT_FAILURE; + if (dmnsn_get_resilience() != DMNSN_SEVERITY_HIGH) { + return EXIT_FAILURE; + } dmnsn_error(DMNSN_SEVERITY_LOW, "This warning is expected."); dmnsn_error(DMNSN_SEVERITY_MEDIUM, "This warning is expected."); |