Cleanup: remove unused label
[lttng-tools.git] / tests / regression / tools / notification / rotation.c
index c9f5de4974375bff948f52d55460fca6dcb2e92f..5554f631adcaea8447ec57bbe24a9dc11d333366 100644 (file)
@@ -79,7 +79,6 @@ int test_condition(struct lttng_condition *condition, const char *type_name)
        ok(out_session_name && !strcmp(session_name, out_session_name),
                        "Session name returned by %s condition matches the expected name",
                        type_name);
-end:
        return ret;
 }
 
@@ -322,10 +321,11 @@ int test_notification(
 
        location_status = lttng_trace_archive_location_local_get_absolute_path(
                        location, &chunk_path);
-       ok(location_status == LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK,
+       ok(location_status == LTTNG_TRACE_ARCHIVE_LOCATION_STATUS_OK && chunk_path,
                        "Retrieved path from location returned by the session rotation completed notification");
        diag("Chunk available at %s", chunk_path ? chunk_path : "NULL");
-       ok(!strncmp(session->output_path, chunk_path, strlen(session->output_path)),
+
+       ok(chunk_path && !strncmp(session->output_path, chunk_path, strlen(session->output_path)),
                        "Returned path from location starts with the output path");
 
 end:
This page took 0.024089 seconds and 5 git commands to generate.