diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2026-06-22 11:52:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-22 11:52:45 -0400 |
| commit | 70c1ba3962166853fc7a1e4f2bb1d637104312b1 (patch) | |
| tree | 98ffb40c90a2016aff436134e14eed1f9a401cb5 /tests | |
| parent | 582744998b624cada2293a533e0cce5720433454 (diff) | |
| download | stasis-1.7.1.tar.gz | |
* Fix missing LF
* Return when item is NULL
* Explicitly state error condition
* strlist_contains: Allow index result argument to be NULL
* BUGFIX: strlist_contains now uses strstr instead of strcmp
* The match was never intended to be exact
* BUGFIX: log_msgv now prints a LF to the same stream as the message
* BUGFIX: env_manipulate_pathstr PM_ONCE logic did opposite of what was intended
* When strstr finds the path in the system path, it's supposed to free the new system path and exit. In this case it was freeing the path when the path wasn't found that lead to several instances of PATH not being updated correctly
* Free result when shell_output fails
* join: Fix segfault on memory error
* join_ex: Fix leak on memory error
* Initialize installer_url and python_override_version to zero
* Remove redundant calls to memset
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_version_compare.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_version_compare.c b/tests/test_version_compare.c index 2a3458f..1502b38 100644 --- a/tests/test_version_compare.c +++ b/tests/test_version_compare.c @@ -147,7 +147,7 @@ void run_cases_version_compare(void) { result = version_compare(op, test->a, test->b); STASIS_ASSERT(test->expected == result, "unexpected result"); - fprintf(stderr, "'%s' '%s' '%s' is %s (%d)", + fprintf(stderr, "'%s' '%s' '%s' is %s (%d)\n", test->a ? test->a : "NULL", test->op ? test->op : "NULL", test->b ? test->b : "NULL", |
